mirror of
https://code.lenaisten.de/Lenaisten/advent22.git
synced 2024-11-22 07:43:00 +00:00
"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;
|
||||
|
||||
this.toast!.show({ duration: 600000, type: "is-warning" });
|
||||
}, 10000);
|
||||
}, 10e3);
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@ advent22Store().init();
|
|||
app.mount("#app");
|
||||
|
||||
bulmaToast.setDefaults({
|
||||
duration: 10000,
|
||||
duration: 10e3,
|
||||
pauseOnHover: true,
|
||||
dismissible: true,
|
||||
closeOnClick: false,
|
||||
|
|
|
@ -8,7 +8,7 @@ export class Advent22 {
|
|||
|
||||
public constructor() {
|
||||
this.axios = axios.create({
|
||||
timeout: 10000,
|
||||
timeout: 10e3,
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue