From 8af39e71a63a39d9cd240fcf044090dfbae6d22d Mon Sep 17 00:00:00 2001 From: zhangjingwei Date: Tue, 10 Aug 2021 14:36:52 +0800 Subject: [PATCH] fix: Fix change volume type result hint Fix change volume type result hint to async type hint Change-Id: I7ed6ca77b8918737984c2e7eedb4995f4730b6b4 --- src/pages/storage/containers/Volume/actions/ChangeType.jsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/pages/storage/containers/Volume/actions/ChangeType.jsx b/src/pages/storage/containers/Volume/actions/ChangeType.jsx index 2e330a19..772caaf5 100644 --- a/src/pages/storage/containers/Volume/actions/ChangeType.jsx +++ b/src/pages/storage/containers/Volume/actions/ChangeType.jsx @@ -48,6 +48,10 @@ export class ChangeType extends ModalAction { this.volumeTypeStore.fetchList(); } + get isAsyncAction() { + return true; + } + get volumeTypes() { const { volume_type } = this.item; const { data = [] } = this.volumeTypeStore.list;