mirror of
https://github.com/apache/superset.git
synced 2026-04-24 18:44:53 +00:00
[Dashboard bug] Slice doesn't show loading icon when loading (#3834)
This commit is contained in:
@@ -151,7 +151,7 @@ class GridLayout extends React.Component {
|
||||
exploreChartUrl={getExploreUrl(this.props.getFormDataExtra(slice))}
|
||||
exportCSVUrl={getExploreUrl(this.props.getFormDataExtra(slice), 'csv')}
|
||||
isExpanded={!!this.isExpanded(slice)}
|
||||
isLoading={[undefined, 'loading'].indexOf(currentChart.chartStatus) !== -1}
|
||||
isLoading={currentChart.chartStatus === 'loading'}
|
||||
isCached={queryResponse.is_cached}
|
||||
cachedDttm={queryResponse.cached_dttm}
|
||||
toggleExpandSlice={this.props.toggleExpandSlice}
|
||||
|
||||
Reference in New Issue
Block a user