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>
This commit is contained in:
parent
ec6bc2f06f
commit
d84f8a818a
1 changed files with 3 additions and 1 deletions
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue