Skip to content

Commit

Permalink
Merge pull request #60 from Discord-Dashboard/bug-fix
Browse files Browse the repository at this point in the history
Fixed padding issue
  • Loading branch information
iMidnights authored Feb 8, 2023
2 parents 7d3d70f + c2f457e commit ddecf4c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dbd-soft-ui",
"version": "1.6.35-beta.1",
"version": "1.6.36-beta.1",
"typings": ".d.ts",
"author": {
"name": "iMidnight"
Expand Down
2 changes: 1 addition & 1 deletion views/components/formTypes/channelsSelect.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
defaultValue=""
class="form-select"
id="<%= option.optionId %>" class="col-md-12"
style="height:30px; <% if(!Allowed.allowed){ %>border-color: red;<% } %> ">
style="<% if(!Allowed.allowed){ %>border-color: red;<% } %> ">
<%
let ioooooo = 0;
let functiona = option.optionType.function(bot, guildid, userid);
Expand Down
2 changes: 1 addition & 1 deletion views/components/formTypes/rolesSelect.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<select class="form-control"
<% if(option.optionType.disabled){ %>disabled
<% } %>
id="<%= option.optionId %>" class="col-md-12" style="height:30px;"
id="<%= option.optionId %>" class="col-md-12"
formType="rolesSelect"
defaultValue=""
<% if(!Allowed.allowed){ %>style="border-color: red;" disabled<% } %>
Expand Down

0 comments on commit ddecf4c

Please sign in to comment.