Skip to content

Commit

Permalink
fixed Category typing
Browse files Browse the repository at this point in the history
  • Loading branch information
jlarsson committed Aug 29, 2023
1 parent bac07af commit b5632af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/settings/settings.gql.schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ type Category {
parentId: String!
label: String
}
input CategoryInput {
id: String!
parentId: String!
Expand Down
2 changes: 1 addition & 1 deletion src/settings/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ export interface LoginPolicy {

export interface Category {
id: string
parentId: string
label: string
categories: Category[]
}

export interface SettingsService {
Expand Down

0 comments on commit b5632af

Please sign in to comment.