"e" number formatting
This commit is contained in:
parent
b734dee575
commit
56db55681a
3 changed files with 3 additions and 3 deletions
|
@ -91,7 +91,7 @@ export default class extends Vue {
|
||||||
if (this.store.user_doors.length === 0) return;
|
if (this.store.user_doors.length === 0) return;
|
||||||
|
|
||||||
this.toast!.show({ duration: 600000, type: "is-warning" });
|
this.toast!.show({ duration: 600000, type: "is-warning" });
|
||||||
}, 10000);
|
}, 10e3);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -19,7 +19,7 @@ advent22Store().init();
|
||||||
app.mount("#app");
|
app.mount("#app");
|
||||||
|
|
||||||
bulmaToast.setDefaults({
|
bulmaToast.setDefaults({
|
||||||
duration: 10000,
|
duration: 10e3,
|
||||||
pauseOnHover: true,
|
pauseOnHover: true,
|
||||||
dismissible: true,
|
dismissible: true,
|
||||||
closeOnClick: false,
|
closeOnClick: false,
|
||||||
|
|
|
@ -8,7 +8,7 @@ export class Advent22 {
|
||||||
|
|
||||||
public constructor() {
|
public constructor() {
|
||||||
this.axios = axios.create({
|
this.axios = axios.create({
|
||||||
timeout: 10000,
|
timeout: 10e3,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue