@griddo/ax 10.2.15 → 10.2.16

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": "10.2.15",
4
+ "version": "10.2.16",
5
5
  "authors": [
6
6
  "Álvaro Sánchez' <alvaro.sanches@secuoyas.com>",
7
7
  "Carlos Torres <carlos.torres@secuoyas.com>",
@@ -231,5 +231,5 @@
231
231
  "publishConfig": {
232
232
  "access": "public"
233
233
  },
234
- "gitHead": "fe963d0fb161a99127e04e47a866f7cd8b44f093"
234
+ "gitHead": "52c6eac7dfab4eee2992165e335e733d18c9d8a3"
235
235
  }
@@ -99,8 +99,8 @@ const ManualPanel = (props: IProps) => {
99
99
  setState((state: IReferenceState) => ({ ...state, showSelected: !state.showSelected }));
100
100
 
101
101
  const handleAdd = () => {
102
- const { mode, fixed, fullRelations, site } = state;
103
- const newValue = { mode, fixed, fullRelations, site };
102
+ const { mode, fixed, fullRelations, site, lang } = state;
103
+ const newValue = { mode, fixed, fullRelations, site, lang };
104
104
  onChange(newValue);
105
105
  handleValidation && handleValidation(state.fixed, validators);
106
106
  };