File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
src/BootstrapBlazor/Components/Input Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -75,17 +75,17 @@ protected override void OnParametersSet()
7575 protected override void BuildRenderTree ( RenderTreeBuilder builder )
7676 {
7777 builder . OpenElement ( 0 , TagName ) ;
78- builder . AddMultipleAttributes ( 1 , AdditionalAttributes ) ;
79- builder . AddAttribute ( 2 , "class" , ClassString ) ;
80- builder . AddAttribute ( 3 , "style" , StyleString ) ;
81- builder . AddAttribute ( 4 , "required" , Required ) ;
78+ builder . AddMultipleAttributes ( 10 , AdditionalAttributes ) ;
79+ builder . AddAttribute ( 20 , "class" , ClassString ) ;
80+ builder . AddAttribute ( 30 , "style" , StyleString ) ;
81+ builder . AddAttribute ( 40 , "required" , Required ) ;
8282 if ( ChildContent != null )
8383 {
84- builder . AddContent ( 5 , ChildContent ) ;
84+ builder . AddContent ( 50 , ChildContent ) ;
8585 }
8686 else
8787 {
88- builder . AddContent ( 6 , DisplayText ) ;
88+ builder . AddContent ( 60 , DisplayText ) ;
8989 }
9090 builder . CloseElement ( ) ;
9191 }
You can’t perform that action at this time.
0 commit comments