Skip to content

Commit

Permalink
Fixes in package components
Browse files Browse the repository at this point in the history
  • Loading branch information
girafffee committed Mar 4, 2024
1 parent 0bb6491 commit 9d5cb54
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion assets/js/editor/package.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/src/package/actions/abstract/BaseAction.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ BaseAction.prototype.initData = function ( props ) {
: {};
},
set: value => {
if ( this.settings.hasOwnProperty( this.type ?? '' ) ) {
if ( !this.settings.hasOwnProperty( this.type ?? '' ) ) {
this.settings[ this.type ] = {};
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import RenderStateOptions from './RenderStateOptions';;
import RenderStateOptions from './RenderStateOptions';
import useUniqKey from '../../blocks/hooks/useUniqKey';
import ClientSideMacros from '../../macros.button/components/ClientSideMacros';
import AdvancedModalControl from '../../components/AdvancedModalControl';
Expand Down
4 changes: 2 additions & 2 deletions vendor/composer/installed.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
'name' => 'crocoblock/jetformbuilder',
'pretty_version' => 'dev-main',
'version' => 'dev-main',
'reference' => '4b4b572ea52a339104b56d512b56ef5f5d578b54',
'reference' => '0054932a35b27192cf4bbc5121ea8d83ad2fd9e2',
'type' => 'wordpress-plugin',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
Expand All @@ -13,7 +13,7 @@
'crocoblock/jetformbuilder' => array(
'pretty_version' => 'dev-main',
'version' => 'dev-main',
'reference' => '4b4b572ea52a339104b56d512b56ef5f5d578b54',
'reference' => '0054932a35b27192cf4bbc5121ea8d83ad2fd9e2',
'type' => 'wordpress-plugin',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
Expand Down

0 comments on commit 9d5cb54

Please sign in to comment.