diff --git a/src/browser/ui/dom/CSSPropertyOperations.js b/src/browser/ui/dom/CSSPropertyOperations.js index 04b9ec1712..83b42e0596 100644 --- a/src/browser/ui/dom/CSSPropertyOperations.js +++ b/src/browser/ui/dom/CSSPropertyOperations.js @@ -77,9 +77,10 @@ if (__DEV__) { warnedStyleValues[value] = true; warning( false, - 'Style property values shouldn\'t contain a semicolon. Try "' + - name + ': ' + value.replace(badStyleValueWithSemicolonPattern, '') + - '" instead.' + 'Style property values shouldn\'t contain a semicolon. ' + + 'Try "%s: %s" instead.', + name, + value.replace(badStyleValueWithSemicolonPattern, '') ); };