fix(dashboard): don't show report modal for anonymous user (#17106)

* Added sunburst echart

* fix(dashboard):Hide reports modal for anonymous users

* Address comments

* Make prettier happy

Co-authored-by: Mayur <mayurp@kpmg.com>
This commit is contained in:
Mayur
2021-11-11 16:20:12 +05:30
committed by GitHub
parent 45480f7ae5
commit 8756c9089e
3 changed files with 29 additions and 2 deletions

View File

@@ -227,7 +227,7 @@ export class ExploreChartHeader extends React.PureComponent {
return false;
}
const { user } = this.props;
if (!user) {
if (!user?.userId) {
// this is in the case that there is an anonymous user.
return false;
}