mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Transformations: Add description to what is searched (#94501)
Add transformation description to what is searched
This commit is contained in:
parent
89da7d6fe5
commit
6e39ea5e46
@ -51,7 +51,10 @@ export function TransformationsDrawer(props: TransformationsDrawerProps) {
|
||||
) {
|
||||
return false;
|
||||
}
|
||||
return t.name.toLocaleLowerCase().includes(drawerState.search.toLocaleLowerCase());
|
||||
return (
|
||||
t.name.toLocaleLowerCase().includes(drawerState.search.toLocaleLowerCase()) ||
|
||||
t.description?.toLocaleLowerCase().includes(drawerState.search.toLocaleLowerCase())
|
||||
);
|
||||
});
|
||||
|
||||
const searchBoxSuffix = (
|
||||
|
Loading…
Reference in New Issue
Block a user