Fix style and condition
All checks were successful
Game Ideas build for PR / build_test (pull_request) Successful in 54s

This commit is contained in:
Maxime Adler
2025-05-15 16:29:46 +02:00
parent 876a1a3745
commit f9df6b4cd8
2 changed files with 2 additions and 1 deletions

View File

@@ -34,6 +34,7 @@
grid-column: 2; grid-column: 2;
box-sizing: border-box; box-sizing: border-box;
color: var(--white); color: var(--white);
padding: 0 8px;
} }
::deep input[type="date"]::-webkit-calendar-picker-indicator { ::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) protected override void OnAfterRender(bool firstRender)
{ {
if (Values != null) if (firstRender && Values != null)
{ {
SearchInput?.SetText(string.Join(", ", Values.Select(GetLabel))); SearchInput?.SetText(string.Join(", ", Values.Select(GetLabel)));
} }