feat: improve Jira URL UX and settings editing

This commit is contained in:
Mikhail Kiselev
2026-03-13 04:01:14 +03:00
parent 9c6a2dbf96
commit 6f153d7f32
5 changed files with 350 additions and 24 deletions

View File

@@ -333,6 +333,7 @@ export namespace models {
windowFullHeight: boolean;
windowX: number;
windowY: number;
defaultJiraUrl: string;
static createFrom(source: any = {}) {
return new Settings(source);
@@ -353,6 +354,7 @@ export namespace models {
this.windowFullHeight = source["windowFullHeight"];
this.windowX = source["windowX"];
this.windowY = source["windowY"];
this.defaultJiraUrl = source["defaultJiraUrl"];
}
}
export class SpeakerInfo {