Compare commits

..

3 commits

Author SHA1 Message Date
dtrentin
acd6053789 Merge branch 'v0.4-opcua' into v0.6-history 2026-07-22 08:59:03 +02:00
dtrentin
9aa31dde1f Merge branch 'v0.3.1-theming' into v0.4-opcua 2026-07-22 08:59:02 +02:00
dtrentin
d84f8a818a fix: dashboard Details button no longer clipped (v0.3.1)
Trailing DataGridTemplateColumn had Width="Auto"; against the 2* star columns
it collapsed on first layout, clipping the Details button to a sliver. Pin to
Width="120" so the button always fits.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-07-22 08:58:50 +02:00

View file

@ -71,7 +71,9 @@
Width="Auto"
x:DataType="vm:MachineRowViewModel" />
<DataGridTemplateColumn Header="" Width="Auto">
<!-- Fixed width: a trailing Auto column collapses against the 2* star columns,
clipping the Details button to a sliver on first layout. -->
<DataGridTemplateColumn Header="" Width="120">
<DataGridTemplateColumn.CellTemplate>
<DataTemplate x:DataType="vm:MachineRowViewModel">
<Button Content="Details"