cmspageblocks 1.0.60 → 1.0.61

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cmspageblocks",
3
- "version": "1.0.60",
3
+ "version": "1.0.61",
4
4
  "description": "",
5
5
  "main": "build/index.js",
6
6
  "repository": {
@@ -8,7 +8,7 @@ export default function Portal({ options }) {
8
8
  return (
9
9
  <>
10
10
  {options.portal_type === 'calendar' && (
11
- <div id="bukazu-app">
11
+ <div id="bukazu-app" className="bukazu-app">
12
12
  <BukazuPortal
13
13
  portalCode={options.portal_code}
14
14
  objectCode={options.object_code}
@@ -17,7 +17,7 @@ export default function Portal({ options }) {
17
17
  </div>
18
18
  )}
19
19
  {options.portal_type === 'search' && (
20
- <div id="bukazu-app">
20
+ <div id="bukazu-app" className="bukazu-app">
21
21
  <BukazuPortal portalCode={options.portal_code} locale={options.language} />
22
22
  </div>
23
23
  )}