Skip to content

Commit

Permalink
Fix currency view in finished view
Browse files Browse the repository at this point in the history
  • Loading branch information
HarmlessHarm committed Dec 6, 2024
1 parent 97ccd1e commit 981bea6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/campaign/Players.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<tag :is="cardView ? 'hk-card' : 'div'" :class="!cardView ? 'normal-view' : ''">
<div slot="header" class="pane__header top-menu">
<div slot="header" class="pane__header top-menu" :class="cardView && 'card-header'">
<div
class="money"
:class="{ red: currency >= maxCurrencyAmount }"
Expand All @@ -10,7 +10,7 @@
show: true,
type: 'drawers/party/Currency',
data: { current: currency },
})
})
: null
"
>
Expand Down

0 comments on commit 981bea6

Please sign in to comment.