Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion ui/src/views/AutogenView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -957,7 +957,8 @@ export default {
if (param.name !== key) {
continue
}
if (input === undefined || input === null || input === '') {
if (input === undefined || input === null || (input === '' &&
Comment thread
utchoang marked this conversation as resolved.
Outdated
!['updateStoragePool', 'updateHost'].includes(action.api))) {

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Pearl1594 we have physical networks tags also, I just checked we could not delete the tag on physical network too, can you please add that here.

if (param.type === 'boolean') {
params[key] = false
}
Expand Down