feat(client/ts): port note_list

This commit is contained in:
Elian Doran
2025-01-28 14:13:21 +02:00
parent 15c63f52dc
commit 546274a79d
4 changed files with 25 additions and 14 deletions

View File

@@ -193,7 +193,7 @@ export class TypedBasicWidget<T extends TypedComponent<any>> extends TypedCompon
* Indicates if the widget is enabled. Widgets are enabled by default. Generally setting this to `false` will cause the widget not to be displayed, however it will still be available on the DOM but hidden.
* @returns whether the widget is enabled.
*/
isEnabled() {
isEnabled(): boolean | null | undefined {
return true;
}