mirror of
https://gitlab.dit.htwk-leipzig.de/htwk-software/htwkalender.git
synced 2025-07-24 13:38:48 +02:00
fix:#15 linted format and typ fix
This commit is contained in:
@ -13,8 +13,10 @@ const moduleStore = defineStore("moduleStore", {
|
||||
this.modules.delete(module.uuid);
|
||||
},
|
||||
hasModule(module: Module): boolean {
|
||||
return this.modules.has(module.uuid) &&
|
||||
(this.modules.get(module.uuid)?.isEqual(module) ?? false);
|
||||
return (
|
||||
this.modules.has(module.uuid) &&
|
||||
(this.modules.get(module.uuid)?.isEqual(module) ?? false)
|
||||
);
|
||||
},
|
||||
removeAllModules() {
|
||||
this.modules.clear();
|
||||
|
Reference in New Issue
Block a user