1
0

Search pagination fix (#800)

* Fix account tool tip displaying in the wrong place

* Set page to one after search
This commit is contained in:
Brayden Zee
2023-11-15 19:22:49 -05:00
committed by GitHub
parent 4491d50935
commit 01ab507e3a
2 changed files with 3 additions and 1 deletions

View File

@@ -2,7 +2,7 @@
<div
v-if="mode !== 'isolated'"
ref="button"
v-tooltip="'Minecraft accounts'"
v-tooltip.right="'Minecraft accounts'"
class="button-base avatar-button"
:class="{ expanded: mode === 'expanded' }"
@click="showCard = !showCard"

View File

@@ -542,6 +542,8 @@ const ascending = ref(true)
const sortColumn = ref('Name')
const currentPage = ref(1)
watch(searchFilter, () => currentPage.value = 1)
const selected = computed(() =>
Array.from(selectionMap.value)
.filter((args) => {