File tree Expand file tree Collapse file tree
CodeBeam.MudBlazor.Extensions/Components/Splitter Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3030 }
3131
3232 .mud-splitter-content-@_styleGuid {
33- @($" height :{ EffectiveHeight}")
33+ @EffectiveHeight
3434 }
3535 </style >
Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ public partial class MudSplitter : MudComponentBase
140140
141141 string EffectiveStartStyle { get { return ! string . IsNullOrWhiteSpace ( StartContentStyle ) ? StartContentStyle : ! string . IsNullOrWhiteSpace ( ContentStyle ) ? ContentStyle : StyleContent ; } }
142142 string EffectiveEndStyle { get { return ! string . IsNullOrWhiteSpace ( EndContentStyle ) ? EndContentStyle : ! string . IsNullOrWhiteSpace ( ContentStyle ) ? ContentStyle : StyleContent ; } }
143- string EffectiveHeight { get { return $ "height: { ( ! string . IsNullOrWhiteSpace ( Height ) ? Height : null ) } !important;"; } }
143+ string EffectiveHeight { get { return ! string . IsNullOrWhiteSpace ( Height ) ? $ "height: { Height } !important;" : null ; } }
144144 string EffectiveBarStyle { get { return ! string . IsNullOrWhiteSpace ( BarStyle ) ? BarStyle : StyleBar ; } }
145145 string EffectiveColor { get { return $ "background-color:var(--mud-palette-{ ( Color == Color . Default ? "action-default" : Color . ToDescriptionString ( ) ) } ) !important;"; } }
146146
You can’t perform that action at this time.
0 commit comments