Skip to content

Commit

Permalink
Fix folder icon (#1074)
Browse files Browse the repository at this point in the history
* Compute Pool Fields on Refresh

Signed-off-by: Daniel Valdivia <18384552+dvaldivia@users.noreply.github.com>

* Fix Folder Icon

Signed-off-by: Daniel Valdivia <18384552+dvaldivia@users.noreply.github.com>

Co-authored-by: Alex <33497058+bexsoft@users.noreply.github.com>
  • Loading branch information
dvaldivia and bexsoft committed Sep 22, 2021
1 parent e6f4ac1 commit 4cdb862
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -774,7 +774,7 @@ const ListObjects = ({
}
}

if (element.indexOf(".") < 0) {
if (!element.endsWith("/") && element.indexOf(".") < 0) {
icon = <FileMissingIcon />;
}

Expand Down

0 comments on commit 4cdb862

Please sign in to comment.