Skip to content

Commit

Permalink
fix(UpdateBenchDialog): $format undefined
Browse files Browse the repository at this point in the history
from #1891
  • Loading branch information
BreadGenie committed Jul 1, 2024
1 parent a1f5e57 commit 4af5f4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dashboard/src2/components/bench/UpdateBenchDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ export default {
},
deployLabel() {
if (this.selectedSites?.length > 0) {
const site = $format.plural(selectedSites.length, 'site', 'sites');
const site = this.$format.plural(selectedSites.length, 'site', 'sites');
return `Deploy and update ${selectedSites.length} ${site}`;
}
Expand Down

0 comments on commit 4af5f4f

Please sign in to comment.