Skip to content

Commit

Permalink
fix(backups): make plural conditional
Browse files Browse the repository at this point in the history
  • Loading branch information
he3als committed Oct 27, 2024
1 parent 4530a90 commit 6c0cd19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/frontend/src/pages/servers/manage/[id]/backups.vue
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@
<div class="flex flex-col items-center justify-between gap-4 sm:flex-row sm:gap-0">
<div class="flex items-baseline gap-2 sm:flex-col">
<div class="text-2xl font-extrabold text-contrast">
{{ data.used_backup_quota }} Backups
{{ data.used_backup_quota }} Backup{{ data.used_backup_quota > 1 ? "s" : "" }}
</div>
<div class="">({{ data.backup_quota - data.used_backup_quota }} slots available)</div>
</div>
Expand Down

0 comments on commit 6c0cd19

Please sign in to comment.