mirror of
https://github.com/grafana/grafana.git
synced 2026-09-05 04:40:13 -05:00
Chore: Fix times in schemas (#64906)
* Fix times in schemas * Fix frontend lints
This commit is contained in:
@@ -18,9 +18,9 @@ export const getMockTeam = (i = 1, overrides = {}): Team => {
|
||||
memberCount: i,
|
||||
permission: TeamPermissionLevel.Member,
|
||||
accessControl: { isEditor: false },
|
||||
created: 0,
|
||||
created: '',
|
||||
orgId: 0,
|
||||
updated: 0,
|
||||
updated: '',
|
||||
...overrides,
|
||||
};
|
||||
};
|
||||
|
||||
@@ -14,9 +14,9 @@ const loadingTeam = {
|
||||
memberCount: 0,
|
||||
permission: TeamPermissionLevel.Member,
|
||||
accessControl: { isEditor: false },
|
||||
created: 0,
|
||||
created: '',
|
||||
orgId: 0,
|
||||
updated: 0,
|
||||
updated: '',
|
||||
};
|
||||
|
||||
export function buildNavModel(team: Team): NavModelItem {
|
||||
|
||||
Reference in New Issue
Block a user