@concretecms/bedrock 1.6.3 → 1.6.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -340,6 +340,13 @@ export default {
340
340
  height: 'auto'
341
341
  })
342
342
  })
343
+
344
+ // Remove the data-dialog=theme-customizer-custom-css div if it appears
345
+ // inside a div with the [role=dialog]. Fixes https://github.com/concretecms/concretecms/issues/12575
346
+ const $customCssDialog = $('div[role=dialog] div[data-dialog=theme-customizer-custom-css]')
347
+ if ($customCssDialog.length) {
348
+ $customCssDialog.remove()
349
+ }
343
350
  },
344
351
  props: {
345
352
  previewAction: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@concretecms/bedrock",
3
- "version": "1.6.3",
3
+ "version": "1.6.4",
4
4
  "description": "The asset framework and dependencies for Concrete CMS.",
5
5
  "scripts": {
6
6
  "lint": "standardx \"**/*.{js,vue}\" && stylelint assets/**/*.{scss,vue}",