@griddo/ax 10.4.1 → 10.4.2
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.
|
|
4
|
+
"version": "10.4.2",
|
|
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": "
|
|
234
|
+
"gitHead": "f278d83131c144600de8ea769c466991f41311c4"
|
|
235
235
|
}
|
|
@@ -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 {
|