Skip to content

Commit

Permalink
Merge pull request #75 from ShakedZrihen/styleable-description-row
Browse files Browse the repository at this point in the history
Styleable description row
  • Loading branch information
ShakedZrihen authored Oct 14, 2024
2 parents fc87843 + a35854a commit 65482af
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions src/@types/post.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ interface IPost {
isRead: boolean;
isRawPost: boolean;
enrichments?: {
metadata?: Record<string, string>;
ai?: Record<string, string>;
operationalHistory?: Record<string, string>;
relatedEntities?: Record<string, string>;
metadata?: Record<string, any>;
ai?: Record<string, any>;
operationalHistory?: Record<string, any>;
relatedEntities?: Record<string, any>;
};
}

Expand Down
4 changes: 2 additions & 2 deletions src/components/custom/SinglePostView/SinglePostView.story.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const meta: Meta<typeof SinglePostView> = {
component: SinglePostView,
argTypes: {},
args: {
isLoading: true,
isLoading: false,
isOpen: true,
post: {
isRawPost: false,
Expand All @@ -32,7 +32,7 @@ const meta: Meta<typeof SinglePostView> = {
isRead: false,
enrichments: {
metadata: {
מקור: 'חדשות 12',
מקור: <div style={{ color: 'red' }}>חדשות 12</div>,
זמן: '12:58:01',
תאריך: '19.8.2024',
},
Expand Down

0 comments on commit 65482af

Please sign in to comment.