Commit b58502b 1 parent 0c19d83 commit b58502b Copy full SHA for b58502b
File tree 2 files changed +2
-2
lines changed
src/BootstrapBlazor/Components/Textarea
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 8
8
}
9
9
<textarea @attributes =" AdditionalAttributes" placeholder =" @PlaceHolder" id =" @Id" class =" @ClassName" disabled =" @Disabled"
10
10
@bind-value =" CurrentValueAsString" @bind-value:event =" @EventString" @onblur =" @OnBlur"
11
- data-bb-shift-enter =" @_shiftEnterString " data-bb-scroll =" @AutoScrollString" @ref =" FocusElement" ></textarea >
11
+ data-bb-shift-enter =" @ShiftEnterString " data-bb-scroll =" @AutoScrollString" @ref =" FocusElement" ></textarea >
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ public partial class Textarea
45
45
/// </summary>
46
46
private string ? AutoScrollString => IsAutoScroll ? "auto" : null ;
47
47
48
- private string ? _shiftEnterString => UseShiftEnter ? "true" : null ;
48
+ private string ? ShiftEnterString => UseShiftEnter ? "true" : null ;
49
49
50
50
/// <summary>
51
51
/// <inheritdoc/>
You can’t perform that action at this time.
0 commit comments