use Template strings

This commit is contained in:
Jörn-Michael Miehe 2022-09-19 09:17:53 +00:00
parent 1b1e19b4ea
commit a565125245
5 changed files with 6 additions and 6 deletions

View file

@ -108,7 +108,7 @@ export default class App extends Vue {
// Update Images
this.$ovdashboard.api_get_list("image/list", (names) => {
this.image_urls = names.map((name: string) =>
this.$ovdashboard.api_url("image/get/" + name)
this.$ovdashboard.api_url(`image/get/${name}`)
);
});
@ -134,7 +134,7 @@ export default class App extends Vue {
// Update Calendar Aggregates
this.$ovdashboard.api_get_list("aggregate/list", (names) => {
this.$ovdashboard.api_get_object_multi<EventData[]>(
names.map((name) => "aggregate/get/" + name),
names.map((name) => `aggregate/get/${name}`),
(calendars) => {
this.calendar_data = [];

View file

@ -50,7 +50,7 @@ export default class TickerBar extends Vue {
// 10 seconds + another second per 40px
const duration = 10 + Math.round(width / 40);
this._marquee.style.setProperty("animation-duration", duration + "s");
this._marquee.style.setProperty("animation-duration", `${duration}s`);
});
}
}

View file

@ -8,7 +8,7 @@
<v-divider
v-if="index < events.length - 1"
class="mx-5"
:key="event.hash + '-div'"
:key="`${event.hash}-div`"
/>
</template>
</v-list>

View file

@ -52,7 +52,7 @@ export default class CalendarCarousel extends Vue {
.getPropertyValue("height");
const maxHeight = parseFloat(divHeightPX) - diff;
divElement.style.setProperty("max-height", maxHeight + "px");
divElement.style.setProperty("max-height", `${maxHeight}px`);
}
public mounted(): void {

View file

@ -67,7 +67,7 @@ export default class EventItem extends Vue {
.mapUnits((x) => Math.round(x))
.toHuman();
return locale_string + " (" + duration_string + ")";
return `${locale_string} (${duration_string})`;
}
}
</script>