"e" number formatting

This commit is contained in:
Jörn-Michael Miehe 2023-11-21 23:22:28 +00:00
parent b734dee575
commit 56db55681a
3 changed files with 3 additions and 3 deletions

View file

@ -91,7 +91,7 @@ export default class extends Vue {
if (this.store.user_doors.length === 0) return;
this.toast!.show({ duration: 600000, type: "is-warning" });
}, 10000);
}, 10e3);
});
}

View file

@ -19,7 +19,7 @@ advent22Store().init();
app.mount("#app");
bulmaToast.setDefaults({
duration: 10000,
duration: 10e3,
pauseOnHover: true,
dismissible: true,
closeOnClick: false,

View file

@ -8,7 +8,7 @@ export class Advent22 {
public constructor() {
this.axios = axios.create({
timeout: 10000,
timeout: 10e3,
});
}