Chore: Fix times in schemas (#64906)

* Fix times in schemas

* Fix frontend lints
This commit is contained in:
Selene
2023-03-21 10:42:19 +01:00
committed by GitHub
parent 9ca01cc070
commit 1328a32a31
16 changed files with 57 additions and 36 deletions
@@ -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,
};
};
+2 -2
View File
@@ -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 {