use Template strings
This commit is contained in:
parent
1b1e19b4ea
commit
a565125245
5 changed files with 6 additions and 6 deletions
|
@ -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 = [];
|
||||
|
||||
|
|
|
@ -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`);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue