bug fix
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
jusax23 2023-02-27 20:09:20 +01:00
parent 50048f5cc7
commit 5615d063ba

View file

@ -34,7 +34,7 @@ export default class juml {
if ((this.#groups[group] ?? {})[name] == null) {
return false;
}
this.#groups[group][name].set(value);
this.#groups[group][name].set = value;
return true;
}