gui: masks for: adding recovery and removals

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
Wolfgang Bumiller
2021-01-08 12:00:00 +01:00
parent 758a827c2d
commit 63fd8e58b2
2 changed files with 8 additions and 3 deletions

View File

@ -161,6 +161,7 @@ Ext.define('PBS.config.TfaView', {
}
try {
me.getView().mask(gettext('Please wait...'), 'x-mask-loading');
await PBS.Async.api2({
url: `/api2/extjs/access/tfa/${record.id}`,
method: 'DELETE',
@ -169,7 +170,9 @@ Ext.define('PBS.config.TfaView', {
me.reload();
} catch (error) {
Ext.Msg.alert(gettext('Error'), error);
}
} finally {
me.getView().unmask();
}
},
},