Skip to content

Commit

Permalink
Merge branch 'develop' into feature/add-additional-tests
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiankaegy authored Jul 9, 2024
2 parents c99ae4f + b0a62f1 commit 1ba8741
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion components/content-picker/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export const ContentPicker: React.FC<ContentPickerProps> = ({
{
id: item.id,
uuid: uuidv4(),
type: 'subtype' in item ? item.subtype : item.type,
type: 'subtype' in item && item.subtype ? item.subtype : item.type,
},
...content,
];
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"publishConfig": {
"access": "public"
},
"version": "1.19.0",
"version": "1.19.1",
"description": "10up Components built for the WordPress Block Editor.",
"main": "./dist/index.js",
"source": "index.ts",
Expand Down

0 comments on commit 1ba8741

Please sign in to comment.