settings: link to new PWR wiki article in note

This commit is contained in:
Harvey Tindall
2023-09-09 16:02:39 +01:00
parent 084a62e60f
commit 084f8aa658
3 changed files with 11 additions and 2 deletions
+3 -1
View File
@@ -469,7 +469,9 @@ class DOMNote implements SNote {
set name(n: string) { this._name.textContent = n; }
get description(): string { return this._description.textContent; }
set description(d: string) { this._description.textContent = d; }
set description(d: string) {
this._description.innerHTML = d;
}
get value(): string { return ""; }
set value(v: string) { return; }