- | {userFile.filename} |
+
+ {userFile.type === 'directory' ? : }
+ |
+
+ {userFile.type === 'directory' ? (
+
+ ) : (
+ userFile.name
+ )}
+ |
{userFile.updated_at} |
@@ -43,6 +80,7 @@ const UserFilesListingTable: React.FunctionComponent
+ |
Name |
Updated at |
Actions |
diff --git a/pyproject.toml b/pyproject.toml
index c7d8f4b1..fdd265f0 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,7 +1,7 @@
[project]
# Project inception: 2023-10-02
name = "BASIL"
-version = "1.8.10"
+version = "1.8.11"
description = "open source software quality management tool"
authors = [
{name = "Luigi Pellecchia", email = "lpellecc@redhat.com"},
|