Skip to content

Commit

Permalink
fix: don't translate enum values (#440)
Browse files Browse the repository at this point in the history
  • Loading branch information
TobiTenno authored Jun 5, 2020

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 2fb7389 commit 1e1f5eb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/views/Timer.vue
Original file line number Diff line number Diff line change
@@ -23,11 +23,11 @@
<arbitration v-if="componentState.arbitration.display" :arbitration="worldstate.arbitration" />
<fissures v-if="componentState.fissures.display" :fissures="worldstate.fissures" />
<kuvas v-if="componentState.kuvas.display" :kuvas="worldstate.kuva" />
<bounty v-if="componentState.bounties.display" :syndicate="ostron" :type="$t('timer.ostron')" />
<bounty v-if="componentState['solaris-bounties'].display" :syndicate="solaris" :type="$t('timer.solaris')" />
<bounty v-if="componentState.bounties.display" :syndicate="ostron" type="ostron" />
<bounty v-if="componentState['solaris-bounties'].display" :syndicate="solaris" type="solaris" />
<sales v-if="componentState.deals.display" :sales="worldstate.flashSales" />
<void-trader v-if="componentState.baro.display" :voidTrader="worldstate.voidTrader" />
<bounty v-if="componentState['hivemind-bounties'].display" :syndicate="hivemind" :type="$t('timer.hivemind')" />
<bounty v-if="componentState['hivemind-bounties'].display" :syndicate="hivemind" type="hivemind" />
</b-row>
</b-container>
</div>

1 comment on commit 1e1f5eb

@vercel
Copy link

@vercel vercel bot commented on 1e1f5eb Jun 5, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.