Skip to content

Commit

Permalink
fix: issue with disable signature option being inverted
Browse files Browse the repository at this point in the history
  • Loading branch information
akinsey committed Jun 23, 2020
1 parent 904073c commit 7d78728
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions modules/ept-boards/client/category-editor.html
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ <h3 class="thin-underline">Add New Board</h3>
<span class="info-tooltip" data-balloon="Disable signature display for this board" data-balloon-pos="down" data-balloon-length="large" data-balloon-break><i class="fa fa-info-circle"></i></span>
</label>
<div class="switch-field">
<input type="radio" id="disable-signature" name="newBoardSignatures" value="false" checked/>
<input type="radio" id="disable-signature" name="newBoardSignatures" value="true" checked/>
<label for="disable-signature">Yes</label>
<input type="radio" id="enable-signature" name="newBoardSignatures" value="true" />
<input type="radio" id="enable-signature" name="newBoardSignatures" value="false" />
<label for="enable-signature">No</label>
</div>
</div>
Expand Down Expand Up @@ -125,9 +125,9 @@ <h3 class="thin-underline">Edit Board</h3>
<span class="info-tooltip" data-balloon="Disable signature display for this board" data-balloon-pos="down" data-balloon-length="large" data-balloon-break><i class="fa fa-info-circle"></i></span>
</label>
<div class="switch-field">
<input type="radio" id="disable-signature-edit" name="editBoardSignatures" value="false" checked/>
<input type="radio" id="disable-signature-edit" name="editBoardSignatures" value="true" checked/>
<label for="disable-signature-edit">Yes</label>
<input type="radio" id="enable-signature-edit" name="editBoardSignatures" value="true" />
<input type="radio" id="enable-signature-edit" name="editBoardSignatures" value="false" />
<label for="enable-signature-edit">No</label>
</div>
</div>
Expand Down

0 comments on commit 7d78728

Please sign in to comment.