mirror of
https://github.com/apache/superset.git
synced 2026-04-24 18:44:53 +00:00
add loading log for dash and exploreview breakdown whole page load action to multiple charts loading events and render events
14 lines
320 B
JavaScript
14 lines
320 B
JavaScript
import { combineReducers } from 'redux';
|
|
import shortid from 'shortid';
|
|
|
|
import charts from '../../chart/chartReducer';
|
|
import saveModal from './saveModalReducer';
|
|
import explore from './exploreReducer';
|
|
|
|
export default combineReducers({
|
|
charts,
|
|
saveModal,
|
|
explore,
|
|
impressionId: () => (shortid.generate()),
|
|
});
|