Skip to content

Commit

Permalink
Hide splitter handle and apply new width to metrics splitter (dotnet#…
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesNK authored Jan 9, 2024
1 parent 2df391f commit 34f726d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/Aspire.Dashboard/Components/Pages/Metrics.razor
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<div class="page-content-area">
@if (ViewModel.Instruments?.Count > 0)
{
<FluentSplitter Style="height:100%" Panel1Size="2fr" Panel2Size="8fr">
<FluentSplitter Style="height:100%" Panel1Size="2fr" Panel2Size="8fr" BarSize="5">
<Panel1>
<FluentTreeView Class="metrics-tree" @bind-CurrentSelected="ViewModel.SelectedTreeItem" @bind-CurrentSelected:after="HandleSelectedTreeItemChangedAsync">
<ChildContent>
Expand Down
4 changes: 4 additions & 0 deletions src/Aspire.Dashboard/wwwroot/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -196,3 +196,7 @@ fluent-data-grid-cell .long-inner-content {
vertical-align: text-bottom;
margin-right: 3px;
}

split-panels::part(handle) {
display: none;
}

0 comments on commit 34f726d

Please sign in to comment.