grafana/public/app/core/actions/index.ts
Jake Krammer bf3dcc809d
Admin: Fix updating organization name not updating configuration subtitle (#26315)
* Fix updating organization name not updating configuration subtitle

* PR feedback: Remove unnecessary square brackets

* Refactor code to update redux state in a safer way, add org action test

* Refactor updateConfigurationSubtitle test, remove jest.mock usage

* Consolidate dependency type
2020-08-07 09:00:44 +02:00

6 lines
324 B
TypeScript

import { clearAppNotification, notifyApp } from '../reducers/appNotification';
import { updateLocation } from '../reducers/location';
import { updateNavIndex, updateConfigurationSubtitle } from '../reducers/navModel';
export { updateLocation, updateNavIndex, updateConfigurationSubtitle, notifyApp, clearAppNotification };