Dashboard import: Bug fixes (#23591)

* clear dashboard on unmount

* fix menu z-index, folderpicker width

* fix issue with saving dashboard in another folder

* use foldermodel instead of selectablevalue

* using z-index from theme

* updated names

* update snapshot

* remove size from folderpicker

* use connectWithCleanup

* update snapshot
This commit is contained in:
Peter Holmberg
2020-04-22 09:04:33 +02:00
committed by GitHub
parent e16213724c
commit 4183921c62
6 changed files with 23 additions and 22 deletions

View File

@@ -332,6 +332,8 @@ export function SelectBase<T>({
}),
container: () => ({
position: 'relative',
// This puts the menu above Inputs (z-index: 1)
zIndex: theme.zIndex.dropdown,
width: width ? `${8 * width}px` : '100%',
}),
}}