Skip to content

Commit

Permalink
add support for 1.41
Browse files Browse the repository at this point in the history
  • Loading branch information
jdlrobson committed Jan 7, 2024
1 parent 10bc8b7 commit 5a26943
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pages/Add.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
<select v-model="skinOutputVersion" @input="changeVersion">
<option value="1.39" :selected="skinOutputVersion === '1.39'">v1.39</option>

Check warning on line 20 in src/pages/Add.vue

View workflow job for this annotation

GitHub Actions / build (14.17.5)

Expected 1 line break after opening tag (`<option>`), but no line breaks found

Check warning on line 20 in src/pages/Add.vue

View workflow job for this annotation

GitHub Actions / build (14.17.5)

Expected 1 line break before closing tag (`</option>`), but no line breaks found
<option value="1.40" :selected="skinOutputVersion === '1.40'">v1.40</option>

Check warning on line 21 in src/pages/Add.vue

View workflow job for this annotation

GitHub Actions / build (14.17.5)

Expected 1 line break after opening tag (`<option>`), but no line breaks found

Check warning on line 21 in src/pages/Add.vue

View workflow job for this annotation

GitHub Actions / build (14.17.5)

Expected 1 line break before closing tag (`</option>`), but no line breaks found
<option value="1.41" :selected="skinOutputVersion === '1.41'">v1.41</option>

Check warning on line 22 in src/pages/Add.vue

View workflow job for this annotation

GitHub Actions / build (14.17.5)

Expected 1 line break after opening tag (`<option>`), but no line breaks found

Check warning on line 22 in src/pages/Add.vue

View workflow job for this annotation

GitHub Actions / build (14.17.5)

Expected 1 line break before closing tag (`</option>`), but no line breaks found
</select>
</div>
<btn
Expand Down Expand Up @@ -124,7 +125,7 @@ ${DEFAULT_SKIN_LESS}
const DEFAULT_SKIN_PROPS = {
html: DEFAULT_HTML,
anon: true,
skinOutputVersion: '1.40',
skinOutputVersion: '1.41',
variables: getLessVarsRaw(),
less: generateStylesheetLESS(),
js: `/* scripts can go here */
Expand Down

0 comments on commit 5a26943

Please sign in to comment.