shwstppr commented on code in PR #8258:
URL: https://github.com/apache/cloudstack/pull/8258#discussion_r1407365714


##########
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 + ')'

Review Comment:
   I like the idea of json export



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to