diff --git a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/rte/rte.controller.js b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/rte/rte.controller.js index 5bcd3b9330..3f762007a0 100644 --- a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/rte/rte.controller.js +++ b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/rte/rte.controller.js @@ -42,8 +42,8 @@ angular.module("umbraco") var standardConfig = result[promises.length - 1]; - var width = parseInt(editorConfig.dimensions.width, 10) || null - var height = parseInt(editorConfig.dimensions.height, 10) || null + var width = parseInt(editorConfig.dimensions.width, 10) || null; + var height = parseInt(editorConfig.dimensions.height, 10) || null; if (height !== null) { standardConfig.plugins.splice(standardConfig.plugins.indexOf("autoresize"), 1);