From dd845f4be64bd063ccdc6a8014d3d316c7b2d16a Mon Sep 17 00:00:00 2001 From: Henry Date: Sat, 27 Dec 2025 22:52:34 +0100 Subject: [PATCH] fix: fixed the Issue with long Names and adapted the count of Entity in a row --- .gitignore | 2 ++ CouchLog/Components/Pages/GlobalList.razor | 28 ++++++++++++++----- CouchLog/Components/Pages/PrivateList.razor | 31 ++++++++++----------- 3 files changed, 38 insertions(+), 23 deletions(-) diff --git a/.gitignore b/.gitignore index 9bc865f..7f0e0d8 100644 --- a/.gitignore +++ b/.gitignore @@ -2,5 +2,7 @@ bin Debug /CouchLog/Data/CouchLog.db +/CouchLog/Data/CouchLog.db-shm +/CouchLog/Data/CouchLog.db-wal #Migrations obj diff --git a/CouchLog/Components/Pages/GlobalList.razor b/CouchLog/Components/Pages/GlobalList.razor index ca9aafe..75141a4 100644 --- a/CouchLog/Components/Pages/GlobalList.razor +++ b/CouchLog/Components/Pages/GlobalList.razor @@ -43,10 +43,10 @@
- - @if (!string.IsNullOrEmpty(ImagePreviewUrl)) + + @if (!string.IsNullOrEmpty(ImageString)) { - + }
@@ -66,12 +66,12 @@ -
+
@foreach (var Entity in GlobalEntities) { if (!Entity.IsPrivate || (Entity.IsPrivate && (Entity.CreatorId == AppUser.Id))) { -
+