bug: full view legend is now fixed

This commit is contained in:
Palash gupta 2022-02-11 15:00:00 +05:30
parent 9bf37b391e
commit db9052ea6e
No known key found for this signature in database
GPG Key ID: 8FD05AE6F9150AD6
2 changed files with 2 additions and 2 deletions

View File

@ -168,7 +168,7 @@ const GridCardGraph = ({
destroyOnClose
>
<FullViewContainer>
<FullView name={name} widget={widget} />
<FullView name={name + 'expanded'} widget={widget} />
</FullViewContainer>
</Modal>

View File

@ -61,7 +61,7 @@ const GridGraph = (): JSX.Element => {
x: (index % 2) * 6,
Component: (): JSX.Element => (
<Graph
name={e.id + index}
name={e.id + index + 'non-expanded'}
isDeleted={isDeleted}
widget={widgets[index]}
/>