Skip to content

Commit

Permalink
fix: labels selector
Browse files Browse the repository at this point in the history
  • Loading branch information
jacovinus committed Feb 5, 2024
1 parent f45a3e3 commit a350ffb
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion packages/main/src/components/LabelsSelector/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,12 @@ export default function LabelsSelector(props: any) {

const theme = useTheme();

const { response, loading }: any = useLabels(dataSourceId);
const { response, loading }: any = useLabels(
dataSourceId,
"",
data?.start,
data?.stop
);

const labelsFromProps = useMemo(() => {
if (data?.labels?.length > 0) {
Expand Down

0 comments on commit a350ffb

Please sign in to comment.