feat: show channel id in channel info dialog

This commit is contained in:
2024-09-23 06:10:49 +02:00
parent 4ec5b1b9ce
commit f8d0aee84e
2 changed files with 13 additions and 1 deletions

View File

@@ -45,4 +45,9 @@ export class TextInput extends UINode {
this.inputElement.value = value;
return this;
}
}
public setReadonly(readonly: boolean) {
this.inputElement.readOnly = readonly;
return this;
}
}