Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37da9b1 commit b8ce94aCopy full SHA for b8ce94a
site/src/pages/TemplatePage/TemplateInsightsPage/TemplateInsightsPage.tsx
@@ -68,7 +68,7 @@ const DailyUsersPanel = (props: BoxProps) => {
68
<PanelContent>
69
{!data && <Loader sx={{ height: "100%" }} />}
70
{data && data.entries.length === 0 && <NoDataAvailable />}
71
- {data && <DAUChart daus={data} />}
+ {data && data.entries.length > 0 && <DAUChart daus={data} />}
72
</PanelContent>
73
</Panel>
74
)
0 commit comments