Skip to content

Commit

Permalink
Add schema fix
Browse files Browse the repository at this point in the history
  • Loading branch information
remko48 committed Oct 15, 2024
1 parent 3d9172c commit 948b786
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 5 deletions.
3 changes: 0 additions & 3 deletions src/entities/schema/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ export class Schema implements TSchema {
public required: string[]
public properties: Record<string, any>
public archive: Record<string, any>
public source: string
public updated: string
public created: string

Expand All @@ -24,7 +23,6 @@ export class Schema implements TSchema {
this.required = schema.required || []
this.properties = schema.properties || {}
this.archive = schema.archive || {}
this.source = schema.source || ''
this.updated = schema.updated || ''
this.created = schema.created || ''
}
Expand All @@ -39,7 +37,6 @@ export class Schema implements TSchema {
required: z.array(z.string()),
properties: z.object({}),
archive: z.object({}),
source: z.string(),
updated: z.string(),
created: z.string(),
})
Expand Down
1 change: 0 additions & 1 deletion src/entities/schema/schema.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ export type TSchema = {
required: string[]
properties: Record<string, any>
archive: Record<string, any>
source: string
updated: string;
created: string;
}
1 change: 0 additions & 1 deletion src/modals/schema/EditSchema.vue
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,6 @@ export default {
version: '',
description: '',
summary: '',
source: '',
created: '',
updated: '',
}
Expand Down

0 comments on commit 948b786

Please sign in to comment.