Merge pull request #712 from palash-signoz/full-view-graph-legend-fix

bug: full view legend is now fixed
This commit is contained in:
Ankit Nayan 2022-02-11 15:42:38 +05:30 committed by GitHub
commit 1e6df307a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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]}
/>