diff --git a/ui/src/ifql/containers/IFQLPage.tsx b/ui/src/ifql/containers/IFQLPage.tsx index c5395d25fa..f313b1c813 100644 --- a/ui/src/ifql/containers/IFQLPage.tsx +++ b/ui/src/ifql/containers/IFQLPage.tsx @@ -123,6 +123,10 @@ export class IFQLPage extends PureComponent { return `${key}: "${value}"` } + if (type === argTypes.ARRAY) { + return `${key}: [${value}]` + } + return `${key}: ${value}` }) .join(', ')