FritzTheCat9 / YoutubeLinks

I achieved 8th place in the "100 Commits" competition organized by DevMentors. Over 100 days, I developed the "YoutubeLinks" application, which allows users to create playlists from YouTube links and download those playlists as MP3 and MP4 files.
29 stars 2 forks source link

fix: FritzPasswordField with adornment on password text fields should not show a scrollbar #65

Open FritzTheCat9 opened 3 months ago

FritzTheCat9 commented 3 months ago

https://github.com/MudBlazor/MudBlazor/issues/9573 https://github.com/MudBlazor/MudBlazor/issues/9601

<MudTextField T=string
              Value=Value
              ValueChanged=OnValueChanged
              For=For
              Label=@Label
              OnlyValidateIfDirty=true
              InputType=_passwordInputType
              Adornment=Adornment.End
              AdornmentIcon=@_passwordInputIcon
              OnAdornmentClick=ShowPassword
              UserAttributes=UserAttributes />

This lines shows a scrollbar, dont know why:

              Adornment=Adornment.End
              AdornmentIcon=@_passwordInputIcon

Adding adornment to a text field shows scrollbar (error): image Without adornment scrollbar is not visible: image I have no idea why adding adornment to a text field adds a scrollbar. Please someone fix that.