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 { computed, reactive, ref, watch } from 'vue';
import type { Schemas } from '../../../types';
import { countryOptions, getCountryLabel } from '../../../shared/countries';
import type { Schemas } from '../../../types';
import { usePlayersStore } from '../stores/players';
useHead({ title: 'Players' });
@@ -175,14 +175,14 @@ const handleImport = async (event: Event) => {
color="secondary"
outline
icon="file_upload"
label="Import JSON"
label="Import"
@click="triggerImport"
/>
<QBtn
color="secondary"
outline
icon="file_download"
label="Export JSON"
label="Export"
@click="exportPlayers"
/>
<input