Skip to content

Commit

Permalink
Update countdowns
Browse files Browse the repository at this point in the history
  • Loading branch information
bourgeoisor committed Jul 15, 2024
1 parent 8403cd6 commit ebd6bfe
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion frontend/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<div v-if="this.now > this.news.maintenance.start && this.now < this.news.maintenance.end" class="container">
<AlertMsg type="warning" :msg="$t('message.lodestoneMaintenance')" />
</div>
<div v-else-if="!this.news.maintenance.updated" class="container">
<div v-else-if="this.now > this.news.maintenance.end && !this.news.maintenance.updated" class="container">
<AlertMsg type="info" :msg="$t('message.lodestoneMaintenanceNotUpdated')" />
</div>

Expand Down
8 changes: 4 additions & 4 deletions frontend/src/assets/news.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"maintenance": {
"updated": true,
"start": 1719392400,
"end": 1719565200
"updated": false,
"start": 1721109600,
"end": 1721124000
},
"latestCountdownID": 42,
"countdowns": [
Expand All @@ -15,7 +15,7 @@
{
"title": "Patch 7.01",
"type": "patch",
"start": 1721120400
"start": 1721124000
},
{
"title": "Patch 7.05",
Expand Down

0 comments on commit ebd6bfe

Please sign in to comment.