File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ public static Node View(Model model) =>
108108 placeholder ( "URL of profile picture" ) ,
109109 value ( model . ImageUrl ) ,
110110 oninput ( new Message . ImageUrlChanged ( model . ImageUrl ) ) ,
111- ..( model . IsSubmitting ? [ disabled ( ) ] : [ ] )
111+ ..( model . IsSubmitting ? [ disabled ( ) ] : Array . Empty < Abies . DOM . Attribute > ( ) )
112112 ] )
113113 ] ) ,
114114 fieldset ( [ class_ ( "form-group" ) ] , [
@@ -118,7 +118,7 @@ public static Node View(Model model) =>
118118 placeholder ( "Your Name" ) ,
119119 value ( model . Username ) ,
120120 oninput ( new Message . UsernameChanged ( model . Username ) ) ,
121- ..( model . IsSubmitting ? [ disabled ( ) ] : [ ] )
121+ ..( model . IsSubmitting ? [ disabled ( ) ] : Array . Empty < Abies . DOM . Attribute > ( ) )
122122 ] )
123123 ] ) , fieldset ( [ class_ ( "form-group" ) ] , [
124124 textarea ( [
@@ -127,7 +127,7 @@ public static Node View(Model model) =>
127127 placeholder ( "Short bio about you" ) ,
128128 value ( model . Bio ) ,
129129 oninput ( new Message . BioChanged ( model . Bio ) ) ,
130- ..( model . IsSubmitting ? [ disabled ( ) ] : [ ] )
130+ ..( model . IsSubmitting ? [ disabled ( ) ] : Array . Empty < Abies . DOM . Attribute > ( ) )
131131 ] ,
132132 [ ]
133133 )
You can’t perform that action at this time.
0 commit comments