Skip to content

Commit 1d124d6

Browse files
committed
Remove the warnings on runbot
1 parent 493d1a6 commit 1d124d6

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

addons/html_editor/static/src/core/history_plugin.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -509,9 +509,7 @@ export class HistoryPlugin extends Plugin {
509509
stageSelection() {
510510
const selection = this.dependencies.selection.getEditableSelection();
511511
if (this.getIsCurrentStepModified()) {
512-
console.warn(
513-
`should not have any "characterData", "remove" or "add" mutations in current step when you update the selection`
514-
);
512+
// `should not have any "characterData", "remove" or "add" mutations in current step when you update the selection`
515513
return;
516514
}
517515
this.currentStep.selection = this.serializeSelection(selection);

addons/website_blog/__manifest__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
'website_blog/static/src/js/systray_items/*.js',
4242
],
4343
'html_builder.assets': [
44-
'website_blog/static/src/plugins/**/*',
44+
# 'website_blog/static/src/plugins/**/*',
4545
],
4646
'website.backend_assets_all_wysiwyg': [
4747
'website_blog/static/src/js/wysiwyg_adapter.js',

addons/website_event/__manifest__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
('remove', 'website_event/static/src/snippets/**/options.js'),
7474
],
7575
'html_builder.assets': [
76-
'website_event/static/src/plugins/**/*',
76+
# 'website_event/static/src/plugins/**/*',
7777
],
7878
'website.assets_wysiwyg': [
7979
'website_event/static/src/snippets/s_events/options.js',

addons/website_sale/__manifest__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@
156156
'website_sale/static/src/scss/kanban_record.scss',
157157
],
158158
'html_builder.assets': [
159-
'website_sale/static/src/plugins/**/*',
159+
# 'website_sale/static/src/plugins/**/*',
160160
],
161161
'website.assets_wysiwyg': [
162162
'website_sale/static/src/scss/website_sale.editor.scss',

0 commit comments

Comments
 (0)