Skip to content

Commit

Permalink
Merge pull request #1198 from neos/dimaip-cke-extra
Browse files Browse the repository at this point in the history
BUGFIX: use correct delimiter for extraAllowedContent rules
  • Loading branch information
dimaip authored Oct 27, 2017
2 parents 43ba6cb + 97f5aa4 commit 6d3bea1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export default class CkEditorFormattingRulesRegistry extends SynchronousRegistry
addToExtraAllowedContent: extraExpression =>
config => {
if (config.extraAllowedContent) {
config.extraAllowedContent += ' ' + extraExpression;
config.extraAllowedContent += ';' + extraExpression;
} else {
config.extraAllowedContent = extraExpression;
}
Expand Down

0 comments on commit 6d3bea1

Please sign in to comment.