From 298728cf83edccca64d2fa633cf1e3e38800688b Mon Sep 17 00:00:00 2001
From: Pandipipas <62224708+Pandipipas@users.noreply.github.com>
Date: Sat, 14 Feb 2026 18:20:44 +0100
Subject: [PATCH] refactor: update button labels for import and export actions
---
src/dashboard/scoreko-dev/views/Players.vue | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/dashboard/scoreko-dev/views/Players.vue b/src/dashboard/scoreko-dev/views/Players.vue
index 1619a0c..668b466 100644
--- a/src/dashboard/scoreko-dev/views/Players.vue
+++ b/src/dashboard/scoreko-dev/views/Players.vue
@@ -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"
/>