Fixed margin issues in the ConfigurationText component

This commit is contained in:
Thorsten Sommer 2024-09-15 19:03:51 +02:00
parent 72d392ff27
commit e172656bd4
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108
2 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@
TextChanged="@this.InternalUpdate" TextChanged="@this.InternalUpdate"
Label="@this.OptionDescription" Label="@this.OptionDescription"
Disabled="@this.Disabled()" Disabled="@this.Disabled()"
Class="mb-3" Class="@MARGIN_CLASS"
Adornment="Adornment.Start" Adornment="Adornment.Start"
AdornmentIcon="@this.Icon" AdornmentIcon="@this.Icon"
AdornmentColor="@this.IconColor" AdornmentColor="@this.IconColor"

View File

@ -1,3 +1,3 @@
# v0.9.12, build 187 (2024-09-xx xx:xx UTC) # v0.9.12, build 187 (2024-09-xx xx:xx UTC)
- Fixed margin issues in the `ConfigurationText` component.
- Refactored the `ConfigurationText` component to debounce the input field to prevent unnecessary configuration updates. The component now also supports multiline text. - Refactored the `ConfigurationText` component to debounce the input field to prevent unnecessary configuration updates. The component now also supports multiline text.