feat: update detach volume

Change the multi-select vm to single selection to prevent simultaneous detaching and error reporting

Change-Id: I7e7471797465e3c56179b2337e0c6a59e4fe0e5e
This commit is contained in:
zhangjingwei 2024-04-02 14:15:43 +08:00
parent 36483416f2
commit b3b81d7082

View File

@ -91,7 +91,6 @@ export class Detach extends ModalAction {
type: 'select-table',
required: true,
data: this.instances,
isMulti: true,
filterParams: [
{
label: t('Name'),
@ -108,11 +107,8 @@ export class Detach extends ModalAction {
onSubmit = ({ instance }) => {
const { id } = this.item;
const { selectedRowKeys } = instance;
return Promise.all(
selectedRowKeys.map((instanceId) =>
this.store.detachVolume({ id: instanceId, volumes: [id] })
)
);
const instanceId = selectedRowKeys[0];
return this.store.detachVolume({ id: instanceId, volumes: [id] });
};
}