Skip to content

Commit 13c22f4

Browse files
committed
fix: rebuild
1 parent 8cd6d72 commit 13c22f4

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

adminforth/spa/src/afcl/Select.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
:class="[{'cursor-pointer': searchDisabled}, classesForInput]"
1717
autocomplete="off" data-custom="no-autofill"
1818
:placeholder="
19-
selectedItems.length && !multiple ? '' : (showDropdown && !searchDisabled ? $t('Search') : placeholder || $t('Select...'))
19+
selectedItems.length && !multiple ? '' : (showDropdown && !searchDisabled ? $t('Search') : placeholder || $t('Select...'))
2020
"
2121
/>
2222

adminforth/spa/src/views/ListView.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,7 @@ async function init() {
449449
}
450450
// page init should be also in same tick
451451
if (route.query.page) {
452-
page.value = parseInt(route.query.page as string);
452+
page.value = parseInt(route.query.page as string);
453453
}
454454
if (route.query.pageSize) {
455455
const parsedPageSize = parseInt(route.query.pageSize as string);

0 commit comments

Comments
 (0)