JQ1983
February 12, 2025, 8:06am
2
@adam : This didn’t make it to 5.3.0? Still having the problem altough the issue is marked as resolved:
opened 10:27AM - 07 Feb 25 UTC
closed 03:43PM - 07 Feb 25 UTC
P4 - low
Area-Apps
Size - XS
v5
### Description of Issue
Icon in the navbar is shown twice:

```
$page=New-UdPage -Name Test -Icon (New-UDIcon -Icon 'circleinfo' -Solid) -Content {
New-UDButton -Text 'Download' -OnClick {
Start-UDDownload -StringData 'Hello, World!'
}
}
New-UDApp -pages $page
```
### Version
5.3.0 (13147482492) nightly
### Severity
Low
### Hosting Method
MSI (Windows Service)
### Operating System
Windows
### Database
SQLite
### Licensed
Yes
### Features
_No response_
### Additional Environment data
_No response_
### Screenshots/Animations
_No response_
1 Like
adam
February 12, 2025, 1:33pm
3
It looks like this wasn’t merged properly into the 5.3 branch. I’ll make sure it gets in 5.3.1.
1 Like
wsl2001
February 13, 2025, 4:03am
4
Icons shows duplicated in pages after updating to 5.3.0
below is the code example:
New-UDPage -Name “Home” -DefaultHomePage -Icon (New-UDIcon -Icon House -Size 1x) -Content { }
krisr
February 13, 2025, 8:33am
5
HI, i just installed PU 5.3.0 and i see some problems with how certain filed are aligned vertically
Those are simply 2 fields (udselect and udautocomplete) divided by udrow and udcolumn
The theme is PaperBase as far as I remember
On 5.2.0 and old 4.4 those fields are aligned the same way
PS the problem is with UDselect command.
All other fields are aligned properly.
PS2. its not theme problem
with default theme this is also not ok
adam
February 13, 2025, 1:02pm
6
We have a fix for this implemented in 5.3.1.
JoseJ
February 13, 2025, 6:57pm
7
Just upgraded from 5.2.3 to 5.3 and now when trying to save changes to endpoints not seeing the list in GIt-Commit.
Reverting to 5.2.3 resolves the issue.
krisr
February 19, 2025, 7:59am
8
I was able to fix it by applying udstyle to udeselect:
' .MuiListItemText-primary { line-height: 0.8;}'
where line-height value depends on theme (in Paperbase its 0.8 in default theme 0.9)
Not the best way but works
Anyway , any chance to fix it permanently in future PU updates ?