mirror of
https://github.com/kremalicious/umami.git
synced 2025-02-14 21:10:34 +01:00
preserve dashboard settings in localStorage
This commit is contained in:
parent
b494a2595d
commit
fa7fb5eb4e
@ -7,7 +7,7 @@ import {
|
||||
THEME_CONFIG,
|
||||
DEFAULT_WEBSITE_LIMIT,
|
||||
} from 'lib/constants';
|
||||
import { getItem } from 'lib/web';
|
||||
import { getItem, setItem } from 'lib/web';
|
||||
|
||||
export const defaultDashboardConfig = {
|
||||
showCharts: true,
|
||||
@ -42,6 +42,7 @@ export function setUser(user) {
|
||||
|
||||
export function setDashboard(dashboard) {
|
||||
store.setState({ dashboard });
|
||||
setItem(DASHBOARD_CONFIG, dashboard);
|
||||
}
|
||||
|
||||
export default store;
|
||||
|
Loading…
Reference in New Issue
Block a user