feat(fluxWizard): show first tag selector OOTB

pull/5852/head
Pavel Zavora 2022-01-14 17:57:07 +01:00
parent 96ed6844c9
commit d87e1fb080
1 changed files with 2 additions and 2 deletions

View File

@ -51,8 +51,8 @@ const FluxQueryBuilder = ({source, onSubmit, onShowEditor}: Props) => {
}, [])
// TODO demo selectors are to be replaced by a real implementation
const [tagSelectors, setTagSelectors] = useState(0)
const [activeTagSelectors, setActiveTagSelectors] = useState([] as number[])
const [tagSelectors, setTagSelectors] = useState(1)
const [activeTagSelectors, setActiveTagSelectors] = useState([0])
const {selectedBucket, sortedBucketNames, bucketsStatus} = state
return (