Skip to content

Commit

Permalink
Fix subtitle param in CardEditor (#1005)
Browse files Browse the repository at this point in the history
  • Loading branch information
shaked-hayek committed Dec 26, 2023
1 parent 21b0955 commit 252a678
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/organisms/CardEditorDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,8 @@ const CardEditor: FC<IProps> = ({ isOpen, onClose, widgetName, text }) => {
actionButtons={false}
sizeOptions={sizeOptions}
dateComment={dateComment}
title={text}
title={widget?.data?.text?.title}
subtitle={widget?.data?.text?.subtitle}
>
<MetaTag>{widgetName}</MetaTag>
<ErrorBoundary>{widgetComponent}</ErrorBoundary>
Expand Down

0 comments on commit 252a678

Please sign in to comment.