Skip to content

Commit

Permalink
Merge pull request #107 from Discord-Dashboard/PlainDevelopment-patch…
Browse files Browse the repository at this point in the history
…-1-1

Update multiRow.ejs
  • Loading branch information
PlainDevelopment authored Jun 18, 2024
2 parents 4dbcd71 + 2faa407 commit fe33e5d
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions views/components/formTypes/multiRow.ejs
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
<div class="formTypes" style="display: flex; flex-wrap: wrap;">

<div class="formTypes">
<% option.optionType.options.forEach(opt => { %>
<div class="formtype-item mt-3" style="min-width: 50%;">
<div class="formtype-item mt-3">
<h4 class="m-0"><%- opt?.optionName || ""%></h4>
<p><%- opt?.optionDescription || ""%></p>
<%- include(`./${opt.optionType.type}.ejs`, {option: opt, s, Allowed: allowList[opt.optionId]}) %>
<%- include(`./${opt.optionType.type}.ejs`, {option: opt, s, Allowed}) %>
</div>
<% }) %>
</div>
</div>

0 comments on commit fe33e5d

Please sign in to comment.