refactor: update button labels for import and export actions

This commit is contained in:
Pandipipas
2026-02-14 18:20:44 +01:00
parent 92af42e386
commit 298728cf83
+3 -3
View File
@@ -5,8 +5,8 @@ defineOptions({ name: 'PlayersView' });
import type { QTableColumn } from 'quasar'; import type { QTableColumn } from 'quasar';
import { computed, reactive, ref, watch } from 'vue'; import { computed, reactive, ref, watch } from 'vue';
import type { Schemas } from '../../../types';
import { countryOptions, getCountryLabel } from '../../../shared/countries'; import { countryOptions, getCountryLabel } from '../../../shared/countries';
import type { Schemas } from '../../../types';
import { usePlayersStore } from '../stores/players'; import { usePlayersStore } from '../stores/players';
useHead({ title: 'Players' }); useHead({ title: 'Players' });
@@ -175,14 +175,14 @@ const handleImport = async (event: Event) => {
color="secondary" color="secondary"
outline outline
icon="file_upload" icon="file_upload"
label="Import JSON" label="Import"
@click="triggerImport" @click="triggerImport"
/> />
<QBtn <QBtn
color="secondary" color="secondary"
outline outline
icon="file_download" icon="file_download"
label="Export JSON" label="Export"
@click="exportPlayers" @click="exportPlayers"
/> />
<input <input