Skip to content

Commit

Permalink
Ensure recipe meta is not displayed in clipboard
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathonherbert committed May 1, 2024
1 parent 7dc6bdc commit 7424dd1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,7 @@ class Card extends React.Component<CardContainerProps> {
onClick={isUneditable ? undefined : () => onSelect(uuid)}
size={size}
textSize={textSize}
showMeta={showMeta}
/>
{getSublinks}
</>
Expand Down
2 changes: 1 addition & 1 deletion fronts-client/src/components/card/recipe/RecipeCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export const RecipeCard = ({
isUneditable,
collectionId,
frontId,
showMeta,
showMeta = true,
...rest
}: Props) => {
const card = useSelector<State, Card>((state) => selectCard(state, id));
Expand Down

0 comments on commit 7424dd1

Please sign in to comment.