From 7be77c4da64a7233bc89a6091bb040dac1c9652e Mon Sep 17 00:00:00 2001 From: MarkDawson104 Date: Sun, 22 Sep 2024 12:31:20 +0100 Subject: [PATCH] Fixes #264 With a watchout, a json duplication may not be the best way to do this with typescript as it assumes this object is a data model. --- src/renderer/components/battle/BotParticipant.vue | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/renderer/components/battle/BotParticipant.vue b/src/renderer/components/battle/BotParticipant.vue index 9abcea07..ec86e504 100644 --- a/src/renderer/components/battle/BotParticipant.vue +++ b/src/renderer/components/battle/BotParticipant.vue @@ -3,7 +3,7 @@
-
{{ bot.name }}
+
{{ bot.name }} - {{ botNameAffix }}
version.id === props.battle.battleOptions.engineVersion); const ai = engineVersion?.ais.find((ai) => ai.name === props.bot.name);