Skip to content

Commit

Permalink
fix: steel essence image missing (#1289)
Browse files Browse the repository at this point in the history
  • Loading branch information
TobiTenno authored Oct 29, 2024
1 parent 254c9ff commit e59dbaf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/panels/AggregatedTimePanel.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import utc from 'dayjs/plugin/utc';
import { mapState } from 'vuex';
import TimeBadge from '@/components/TimeBadge.jsx';

import thumb from '@/components/AsyncItemThumb.jsx';
import HubPanelWrap from '@/components/HubPanelWrap.jsx';
import HubImg from '@/components/HubImg.jsx';

Expand All @@ -11,7 +12,6 @@ import { cdn, wfcdn, optimize } from '@/services/utilities.js';
dayjs.extend(utc);

const steelPath = cdn('svg/sp-logo.svg');
const steelEssence = optimize(wfcdn('steel-essence.png'), '250x250', 'fill', 'center');

const cycleDefault = {
activation: '0',
Expand Down Expand Up @@ -254,7 +254,7 @@ const SteelPathTimer = {
</span>
<br />
{this.steelPath?.currentReward?.cost}
<HubImg src={steelEssence} name={this.$t('currency.steelEssense')} />
<thumb ikey={'Steel Essence'} alt={this.$t('currency.steelEssense')} />
<br />
<TimeBadge
starttime={this.steelPath?.activation || '0'}
Expand Down

0 comments on commit e59dbaf

Please sign in to comment.