Skip to content

Commit

Permalink
Revert "PS-53 [FIX] Ensure Rich text field is rendered in Drag and dr…
Browse files Browse the repository at this point in the history
…op accor…" (#687)

This reverts commit 51a8ad5.
  • Loading branch information
ysolodka authored Oct 29, 2024
1 parent 51a8ad5 commit 3d6ffbd
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions js/libs/builder.js
Original file line number Diff line number Diff line change
Expand Up @@ -1020,11 +1020,15 @@ Fliplet().then(function() {
Fliplet.Studio.emit('widget-mode', 'normal');
}
},
'section': function() {
'section': function(value) {
var $vm = this;

$vm.setupCodeEditor();
changeSelectText();
if (value === 'settings') {
$vm.setupCodeEditor();
changeSelectText();
} else {
tinymce.remove();
}
},
'settings.dataStore': function(value) {
this.showExtraAdd = value.indexOf('dataSource') > -1;
Expand Down

0 comments on commit 3d6ffbd

Please sign in to comment.