@griddo/ax 10.4.1 → 10.4.3

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.4.1",
4
+ "version": "10.4.3",
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": "0df5b4310abd732f5684a9f0851e55d95ee43123"
234
+ "gitHead": "e75e4dc2c9fbc163ccbf9050792be04591530b6a"
235
235
  }
@@ -97,7 +97,7 @@ const CopyModal = (props: ICopyModal): JSX.Element => {
97
97
  <S.ModalContent>
98
98
  <p>
99
99
  <strong>Select a site to copy this page. </strong>
100
- <br/>
100
+ <br />
101
101
  You can only select sites with the same language as this page.
102
102
  </p>
103
103
  <S.SelectWrapper>
@@ -267,7 +267,7 @@ const Content = (props: IProps): JSX.Element => {
267
267
  async (filterQuery?: any) => {
268
268
  const params = getParams();
269
269
  isStructuredData && params.siteID
270
- ? await getStructuredDataContents({...params, filterQuery }, params.siteID)
270
+ ? await getStructuredDataContents({ ...params, filterQuery }, params.siteID)
271
271
  : getPages(params, filterQuery);
272
272
  },
273
273
  // eslint-disable-next-line react-hooks/exhaustive-deps
@@ -51,6 +51,8 @@ const DropIcon = styled.div`
51
51
  `;
52
52
 
53
53
  const SuccessIcon = styled.div`
54
+ display: flex;
55
+ justify-content: center;
54
56
  height: ${(p) => p.theme.spacing.l};
55
57
  margin-bottom: ${(p) => p.theme.spacing.s};
56
58
  svg {
@@ -79,6 +81,8 @@ const SuccessStatus = styled.div`
79
81
  `;
80
82
 
81
83
  const ErrorStatus = styled.div`
84
+ display: flex;
85
+ justify-content: center;
82
86
  transition: opacity 0.1s;
83
87
  ${DragIcon} {
84
88
  svg {
@@ -132,7 +132,7 @@ const Integrations = (props: IIntegrationsProps): JSX.Element => {
132
132
  {
133
133
  icon: "delete",
134
134
  text: "delete",
135
- action: bulkDelete,
135
+ action: toggleModalDelete,
136
136
  },
137
137
  ]
138
138
  : [];