feat: Update LobbyComponent to use icons for player removal buttons

This commit is contained in:
2026-01-07 22:34:16 +01:00
parent 3eb505806c
commit c6537467f8

View File

@@ -103,14 +103,14 @@ const profileIcon = 'person';
<q-btn <q-btn
v-if="player.id !== (<LobbyInfo>ig.data).self.id" v-if="player.id !== (<LobbyInfo>ig.data).self.id"
color="negative" color="negative"
label="Remove" icon="sports_martial_arts"
@click="handleKickPlayer(player)" @click="handleKickPlayer(player)"
class="full-width" class="full-width"
/> />
<q-btn <q-btn
v-else v-else
color="negative" color="negative"
label="Remove (Cannot Kick Self)" icon="sports_martial_arts"
disable disable
class="full-width" class="full-width"
/> />