@griddo/ax 11.9.0 → 11.9.2-rc.0

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@griddo/ax",
3
3
  "description": "Griddo Author Experience",
4
- "version": "11.9.0",
4
+ "version": "11.9.2-rc.0",
5
5
  "authors": [
6
6
  "Álvaro Sánchez' <alvaro.sanches@secuoyas.com>",
7
7
  "Diego M. Béjar <diego.bejar@secuoyas.com>",
@@ -224,5 +224,5 @@
224
224
  "publishConfig": {
225
225
  "access": "public"
226
226
  },
227
- "gitHead": "64800332a66f1b5abafa8279f09ee09f084550c3"
227
+ "gitHead": "f560684060ed86dcc0ba0a016d9782d260d52be8"
228
228
  }
@@ -65,7 +65,8 @@ const NavConnectedField = (props: any): JSX.Element => {
65
65
  selectedContent,
66
66
  isTemplateActivated,
67
67
  theme,
68
- disabled || isDisabled,
68
+ moduleCopy,
69
+ !!disabled || isDisabled,
69
70
  site
70
71
  );
71
72
  }
@@ -172,7 +172,7 @@ const DefaultsEditor = (props: IProps) => {
172
172
  <>
173
173
  <RouteLeavingGuard when={isDirty || isSaving} action={goBack} text={leavingGuardText} />
174
174
  <MainWrapper
175
- title={editorContent.title}
175
+ title={editorContent?.title}
176
176
  backLink={backLinkRoute}
177
177
  rightButton={rightButtonProps}
178
178
  fixedAppBar={true}
@@ -207,7 +207,7 @@ const DefaultsEditor = (props: IProps) => {
207
207
  <Modal
208
208
  isOpen={isOpen}
209
209
  hide={toggleModal}
210
- title={`Default ${editorContent.component}`}
210
+ title={`Default ${editorContent?.component}`}
211
211
  secondaryAction={secondaryModalAction}
212
212
  mainAction={mainModalAction}
213
213
  size="S"