Skip to content

Commit 65c9669

Browse files
Nikhil-Ashokarfrandse
authored andcommitted
Fixed Activation key error (#510)
- Fixed the error message which was displaying even after key is successfully added. Signed-off-by: Nikhil Ashoka <[email protected]>
1 parent e161a6b commit 65c9669

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/views/ResourceManagement/CapacityOnDemand/CapacityOnDemandActivation.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,8 @@ const submitForm = () => {
123123
startLoader();
124124
licenseStore
125125
.activateLicense(licenseKey.value)
126-
.then((success) => successToast(success).then(() => fetchInfo()))
126+
.then((success) => successToast(success))
127+
.then(() => fetchInfo())
127128
.catch(({ message }) => errorToast(message))
128129
.finally(() => endLoader());
129130
}

0 commit comments

Comments
 (0)