@griddo/ax 11.9.0-rc.7 → 11.9.0-rc.9

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-rc.7",
4
+ "version": "11.9.0-rc.9",
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": "2f636f596add917f46bea57a00fc14402d613eaf"
227
+ "gitHead": "d5a206170ce96da44184dc0067fd896ebbf52763"
228
228
  }
@@ -59,7 +59,7 @@ const Gallery = (props: IProps): JSX.Element => {
59
59
  const [currentFolderID, setCurrentFolderID] = useState<number | null>(null);
60
60
  const isLocalTab = selectedTab === "local";
61
61
  const galleryScope = isLocalTab && site ? site.id : "global";
62
- const hasFolders = !!folders.length;
62
+ const hasFolders = !!folders?.length;
63
63
  const isRoot = !breadcrumb.length;
64
64
  const validFormats = ["jpeg", "jpg", "png", "svg", "gif"];
65
65
 
@@ -130,6 +130,7 @@ const SectionWrapper = styled.div`
130
130
  display: flex;
131
131
  flex-direction: column;
132
132
  width: 100%;
133
+ height: 100%;
133
134
  padding-top: ${(p) => p.theme.spacing.m};
134
135
  `;
135
136