Compare commits

...

2 Commits

Author SHA1 Message Date
TeamCity
8482aa8876 ci: bump version to v0.22.0 2026-01-07 21:37:08 +00:00
c6537467f8 feat: Update LobbyComponent to use icons for player removal buttons 2026-01-07 22:34:23 +01:00
3 changed files with 8 additions and 3 deletions

View File

@@ -155,3 +155,8 @@
### Features ### Features
* Implement PlayDogCard functionality in user session and update Vue component ([058d232](https://git.janis-eccarius.de/KnockOutWhist/KnockOutWhist-Frontend/commit/058d232d2ba00f33b1e658fc8a793dcd59018fa4)) * Implement PlayDogCard functionality in user session and update Vue component ([058d232](https://git.janis-eccarius.de/KnockOutWhist/KnockOutWhist-Frontend/commit/058d232d2ba00f33b1e658fc8a793dcd59018fa4))
## [0.0.0](https://git.janis-eccarius.de/KnockOutWhist/KnockOutWhist-Frontend/compare/0.21.0...0.0.0) (2026-01-07)
### Features
* Update LobbyComponent to use icons for player removal buttons ([c653746](https://git.janis-eccarius.de/KnockOutWhist/KnockOutWhist-Frontend/commit/c6537467f87d60aeece18f86f42c839d5437c18b))

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"
/> />

View File

@@ -1,3 +1,3 @@
MAJOR=0 MAJOR=0
MINOR=21 MINOR=22
PATCH=0 PATCH=0