Skip to content

Commit 2cc265a

Browse files
author
UniqueIdGenerator Author
committed
fixes build errors
1 parent 8f22dfb commit 2cc265a

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Abies.Conduit/Page/Settings.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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
)

0 commit comments

Comments
 (0)