Skip to content

Commit

Permalink
Fix e2e
Browse files Browse the repository at this point in the history
  • Loading branch information
cbravobernal committed Sep 11, 2024
1 parent 0144e34 commit 4cac9bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/editor/src/bindings/post-meta.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export default {
for ( const [ attributeName, source ] of Object.entries( bindings ) ) {
// Use the key if the value is not set.
newValues[ attributeName ] =
metaFields?.[ source.args.key ] || source.args.key;
metaFields?.[ source.args.key ] ?? source.args.key;
}
return newValues;
},
Expand Down

0 comments on commit 4cac9bd

Please sign in to comment.