We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6c346df + c5b1fec commit cbcd698Copy full SHA for cbcd698
ui/src/views/AutogenView.vue
@@ -957,7 +957,8 @@ export default {
957
if (param.name !== key) {
958
continue
959
}
960
- if (input === undefined || input === null || input === '') {
+ if (!input === undefined || input === null ||
961
+ (input === '' && !['updateStoragePool', 'updateHost', 'updatePhysicalNetwork'].includes(action.api))) {
962
if (param.type === 'boolean') {
963
params[key] = false
964
0 commit comments