Skip to content
Snippets Groups Projects
Unverified Commit 441d9d1a authored by Anton Kulyk's avatar Anton Kulyk Committed by GitHub
Browse files

Fix collections without subcollections have an expand arrow (#15626)

* Fix collections without children have expand arrow

* Bring back issue reference to Cypress test
parent 5529e1ce
No related branches found
No related tags found
No related merge requests found
......@@ -25,6 +25,8 @@ class CollectionsList extends React.Component {
{collections.map(c => {
const isOpen = openCollections.indexOf(c.id) >= 0;
const action = isOpen ? this.props.onClose : this.props.onOpen;
const hasChildren =
Array.isArray(c.children) && c.children.length > 0;
return (
<Box key={c.id}>
<CollectionDropTarget collection={c}>
......@@ -48,7 +50,7 @@ class CollectionsList extends React.Component {
c.name.length > 25 ? "flex-start" : "center"
}
>
{c.children && (
{hasChildren && (
<Flex
className="absolute text-brand cursor-pointer"
align="center"
......
......@@ -461,7 +461,7 @@ describe("scenarios > collection_defaults", () => {
cy.findByText("Orders");
});
it.skip("collections without sub-collections shouldn't have chevron icon (metabase#14753)", () => {
it("collections without sub-collections shouldn't have chevron icon (metabase#14753)", () => {
cy.visit("/collection/root");
cy.findByText("Your personal collection")
.parent()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment