Merge pull request #5096 from jsangmeister/settings-safety-check
Added safety check before reset in config
This commit is contained in:
commit
d12bf299cc
@ -106,8 +106,13 @@ export class ConfigListComponent extends BaseComponent implements CanComponentDe
|
|||||||
/**
|
/**
|
||||||
* This resets all values to their defaults.
|
* This resets all values to their defaults.
|
||||||
*/
|
*/
|
||||||
public resetAll(): void {
|
public async resetAll(): Promise<void> {
|
||||||
this.repo.resetGroups([this.configGroup.name]);
|
const title = this.translate.instant(
|
||||||
|
'Are you sure you want to reset this group? All custom changes will be lost.'
|
||||||
|
);
|
||||||
|
if (await this.promptDialog.open(title)) {
|
||||||
|
await this.repo.resetGroups([this.configGroup.name]);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user