mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-26 09:35:38 -05:00
Fix backup/restore dialog titles not updating (#23164)
* Fix backup/restore dialog titles not updating * Don't cast
This commit is contained in:
@@ -661,7 +661,7 @@ export abstract class Modal extends Disposable implements IThemable {
|
||||
/**
|
||||
* Set the title of the modal
|
||||
*/
|
||||
protected set title(title: string) {
|
||||
public set title(title: string) {
|
||||
this._title = title;
|
||||
if (this._modalTitle) {
|
||||
this._modalTitle.innerText = title;
|
||||
@@ -671,7 +671,7 @@ export abstract class Modal extends Disposable implements IThemable {
|
||||
}
|
||||
}
|
||||
|
||||
protected get title(): string {
|
||||
public get title(): string {
|
||||
return this._title;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user