Skip to content

Commit

Permalink
Merge pull request #78 from Sybit-Education/feat/svg-service
Browse files Browse the repository at this point in the history
feat: svg service
  • Loading branch information
AlexanderKugler authored Aug 1, 2024
2 parents 3ef163b + 4c4f31d commit 3121e73
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/app/services/airtable.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ export class AirtableService {
id: record["id"] as string,
name: record.fields["name"] as string,
color: record.fields["color"] as string,
svg: record.fields["svg"] as string,
};
});
}),);
Expand Down
3 changes: 1 addition & 2 deletions src/app/types/types.interface.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
export interface TypesInterface {

id?: string,
name: string,
color: string

svg: string
}

0 comments on commit 3121e73

Please sign in to comment.