diff --git a/web/ui/mantine-ui/src/pages/query/DataTable.tsx b/web/ui/mantine-ui/src/pages/query/DataTable.tsx index e401edea12..92c0607f24 100644 --- a/web/ui/mantine-ui/src/pages/query/DataTable.tsx +++ b/web/ui/mantine-ui/src/pages/query/DataTable.tsx @@ -9,6 +9,7 @@ import { ScrollArea, Group, Stack, + Text, } from "@mantine/core"; import { IconAlertTriangle, IconInfoCircle } from "@tabler/icons-react"; import { @@ -168,12 +169,15 @@ const DataTable: FC = ({ expr, evalTime, retriggerIdx }) => { {s.values && s.values.map((v, idx) => (
- {v[1]} @{" "} - { - - {v[0]} - - } + {v[1]}{" "} + + @ {v[0]} +
))}