diff --git a/frontend/src/views/falukant/ReputationView.vue b/frontend/src/views/falukant/ReputationView.vue index 7d935ca..4f3cfe2 100644 --- a/frontend/src/views/falukant/ReputationView.vue +++ b/frontend/src/views/falukant/ReputationView.vue @@ -16,6 +16,45 @@ {{ $t('falukant.reputation.overview.current') }}: {{ reputationDisplay }}

+ +
+

{{ $t('falukant.reputation.actions.title') }}

+

+ {{ $t('falukant.reputation.actions.description') }} +

+

+ {{ $t('falukant.reputation.actions.dailyLimit', { remaining: reputationActionsDailyRemaining, cap: reputationActionsDailyCap }) }} +

+ + + + + + + + + + + + + + + + + + + + +
{{ $t('falukant.reputation.actions.action') }}{{ $t('falukant.reputation.actions.cost') }}{{ $t('falukant.reputation.actions.gain') }}{{ $t('falukant.reputation.actions.timesUsed') }}
{{ $t('falukant.reputation.actions.type.' + a.tr) }}{{ Number(a.cost || 0).toLocaleString($i18n.locale) }}+{{ Number(a.currentGain || 0) }}{{ Number(a.timesUsed || 0) }} + +
+

+ {{ $t('falukant.reputation.actions.none') }} +

+
@@ -143,43 +182,6 @@
-
-

- {{ $t('falukant.reputation.actions.description') }} -

-

- {{ $t('falukant.reputation.actions.dailyLimit', { remaining: reputationActionsDailyRemaining, cap: reputationActionsDailyCap }) }} -

- - - - - - - - - - - - - - - - - - - - -
{{ $t('falukant.reputation.actions.action') }}{{ $t('falukant.reputation.actions.cost') }}{{ $t('falukant.reputation.actions.gain') }}{{ $t('falukant.reputation.actions.timesUsed') }}
{{ $t('falukant.reputation.actions.type.' + a.tr) }}{{ Number(a.cost || 0).toLocaleString($i18n.locale) }}+{{ Number(a.currentGain || 0) }}{{ Number(a.timesUsed || 0) }} - -
-

- {{ $t('falukant.reputation.actions.none') }} -

-
@@ -197,8 +199,7 @@ export default { activeTab: 'overview', tabs: [ { value: 'overview', label: 'falukant.reputation.overview.title' }, - { value: 'party', label: 'falukant.reputation.party.title' }, - { value: 'actions', label: 'falukant.reputation.actions.title' } + { value: 'party', label: 'falukant.reputation.party.title' } ], newPartyView: false, newPartyTypeId: null, @@ -335,7 +336,7 @@ export default { }, async mounted() { const tabFromQuery = this.$route?.query?.tab; - if (['overview','party','actions'].includes(tabFromQuery)) { + if (['overview','party'].includes(tabFromQuery)) { this.activeTab = tabFromQuery; } await this.loadPartyTypes();