@@ -665,16 +665,16 @@ const actions: Store<"main", State, {}, Actions> = {
665
665
666
666
this . addComponentToActiveRouteInRouteMap ( payload ) ;
667
667
668
- const value = this . componentChildrenMultiselectValue . map (
669
- ( component ) => this . componentMap [ component ]
670
- ) ;
668
+ // const value = this.componentChildrenMultiselectValue.map(
669
+ // (component) => this.componentMap[component]
670
+ // );
671
671
672
672
if ( this . parentSelected . length ) {
673
673
this . addParent ( payload ) ;
674
674
}
675
675
676
- this . updateComponentChildrenValue ( { componentName, value } ) ;
677
- this . updateComponentChildrenMultiselectValue ( [ ] ) ;
676
+ // this.updateComponentChildrenValue({ componentName, value });
677
+ // this.updateComponentChildrenMultiselectValue([]);
678
678
this . updateComponentNameInputValue ( "" ) ;
679
679
this . setSelectedElementList ( [ ] ) ;
680
680
this . setActiveComponent ( "" ) ;
@@ -822,16 +822,16 @@ const actions: Store<"main", State, {}, Actions> = {
822
822
// also invoked when a child is added to the parent from the sidebar (EditSidebar or HomeSidebar?)
823
823
// also invoked when clicked on invoking the modal-view
824
824
// event: @ VueMultiselect
825
- updateComponentChildrenMultiselectValue ( payload ) {
826
- this . componentChildrenMultiselectValue = payload ;
827
- } ,
825
+ // updateComponentChildrenMultiselectValue(payload) {
826
+ // this.componentChildrenMultiselectValue = payload;
827
+ // },
828
828
829
829
// executed when a new component is made
830
830
// additionally adds children to the component
831
- updateComponentChildrenValue ( payload ) {
832
- const { componentName, value } = payload ;
833
- this . componentMap [ componentName ] . children = value ;
834
- } ,
831
+ // updateComponentChildrenValue(payload) {
832
+ // const { componentName, value } = payload;
833
+ // this.componentMap[componentName].children = value;
834
+ // },
835
835
836
836
updateComponentNameInputValue ( payload ) {
837
837
this . componentNameInputValue = payload ;
0 commit comments