mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Remove Select from Forms namespace (#23289)
This commit is contained in:
parent
1f3c64f784
commit
c993e1c988
@ -1,6 +1,6 @@
|
||||
import React, { FC } from 'react';
|
||||
import { css } from 'emotion';
|
||||
import { Button, Forms, stylesFactory, useTheme, HorizontalGroup } from '@grafana/ui';
|
||||
import { Button, Select, Forms, stylesFactory, useTheme, HorizontalGroup } from '@grafana/ui';
|
||||
import { GrafanaTheme, SelectableValue } from '@grafana/data';
|
||||
|
||||
type onSelectChange = (value: SelectableValue) => void;
|
||||
@ -55,7 +55,7 @@ export const SearchResultsFilter: FC<Props> = ({
|
||||
</HorizontalGroup>
|
||||
) : (
|
||||
<HorizontalGroup spacing="md">
|
||||
<Forms.Select
|
||||
<Select
|
||||
size="sm"
|
||||
placeholder="Filter by starred"
|
||||
key={selectedStarredFilter}
|
||||
@ -63,7 +63,7 @@ export const SearchResultsFilter: FC<Props> = ({
|
||||
onChange={onStarredFilterChange}
|
||||
/>
|
||||
|
||||
<Forms.Select
|
||||
<Select
|
||||
size="sm"
|
||||
placeholder="Filter by tag"
|
||||
key={selectedTagFilter}
|
||||
|
Loading…
Reference in New Issue
Block a user