Fix gitea issues #54

Merged
Egamorf merged 10 commits from fix/correct-gitea-issues into main 2025-05-18 16:27:57 +02:00
2 changed files with 2 additions and 1 deletions
Showing only changes of commit f9df6b4cd8 - Show all commits

View File

@@ -34,6 +34,7 @@
grid-column: 2;
box-sizing: border-box;
color: var(--white);
padding: 0 8px;
}
::deep input[type="date"]::-webkit-calendar-picker-indicator {

View File

@@ -37,7 +37,7 @@ public partial class SelectSearch<TItem>
protected override void OnAfterRender(bool firstRender)
{
if (Values != null)
if (firstRender && Values != null)
{
SearchInput?.SetText(string.Join(", ", Values.Select(GetLabel)));
}