This commit is contained in:
Felix Roos 2022-02-25 20:47:44 +01:00
parent 08ab06c9cc
commit 067c0bfe70
2 changed files with 5 additions and 6 deletions

View file

@ -214,7 +214,7 @@ class Hap {
}
show() {
return "(" + (this.whole == undefined ? "~" : this.whole.show()) + ", " + this.part.show() + ", " + JSON.stringify(this.value?.value ?? this.value) + ")"
return "(" + (this.whole == undefined ? "~" : this.whole.show()) + ", " + this.part.show() + ", " + this.value + ")"
}
setContext(context) {