diff --git a/ui/src/views/network/AclListRulesTab.vue b/ui/src/views/network/AclListRulesTab.vue index c8b6689fb59..124d91ce399 100644 --- a/ui/src/views/network/AclListRulesTab.vue +++ b/ui/src/views/network/AclListRulesTab.vue @@ -334,7 +334,17 @@ export default { result += columnDelimiter } - result += typeof item[key] === 'string' && item[key].includes(columnDelimiter) ? `"${item[key]}"` : item[key] + if (key === 'tags') { + var tags = '"' + if (item[key].length > 0) { + item[key].forEach(tag => { + tags += '(' + tag.key + ',' + tag.value + ')' + }) + } + result += tags + '"' + } else { + result += typeof item[key] === 'string' && item[key].includes(columnDelimiter) ? `"${item[key]}"` : item[key] + } ctr++ }) result += lineDelimiter