Skip to content

Commit

Permalink
fix(endpoint-posts): inline radios
Browse files Browse the repository at this point in the history
  • Loading branch information
paulrobertlloyd committed Jan 20, 2024
1 parent 4264248 commit a2da82c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/endpoint-posts/views/post-form.njk
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,10 @@
}) | indent(2) if postType === "reply" or postType === "rsvp" }}

{{ radios({
classes: "radios--inline",
name: "rsvp",
values: properties.rsvp or "yes",
fieldset: {
classes: "radios--inline",
legend: __("posts.form.rsvp.label")
},
items: [{
Expand Down Expand Up @@ -330,10 +330,10 @@
}) | indent(4) }}

{{ radios({
classes: "radios--inline",
name: "visibility",
values: properties.visibility or "public",
fieldset: {
classes: "radios--inline",
legend: __("posts.form.visibility.label")
},
items: [{
Expand Down

0 comments on commit a2da82c

Please sign in to comment.