Skip to content

Commit

Permalink
feat: add cursor pointer
Browse files Browse the repository at this point in the history
  • Loading branch information
dewanakl committed Dec 27, 2024
1 parent fb42f88 commit 4556877
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions dashboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -300,20 +300,20 @@ <h6 class="fw-semibold m-1" style="color: var(--bs-gray-900);"><i class="fa-soli
<p class="mx-0 mt-0 mb-1 p-0 fw-bold"><i class="fa-solid fa-sliders me-1"></i>Control</p>

<div class="form-check form-switch mb-1">
<input class="form-check-input" type="checkbox" role="switch" id="filterBadWord" onchange="admin.changeFilterBadWord(this)" data-offline-disabled>
<label class="form-check-label" for="filterBadWord">Filter Bad Word</label>
<input class="form-check-input" style="cursor:pointer;" type="checkbox" role="switch" id="filterBadWord" onchange="admin.changeFilterBadWord(this)" data-offline-disabled>
<label class="form-check-label" style="cursor:pointer;" for="filterBadWord">Filter Bad Word</label>
</div>
<div class="form-check form-switch mb-1">
<input class="form-check-input" type="checkbox" role="switch" id="replyComment" onchange="admin.replyComment(this)" data-offline-disabled>
<label class="form-check-label" for="replyComment">Can Reply Comment</label>
<input class="form-check-input" style="cursor:pointer;" type="checkbox" role="switch" id="replyComment" onchange="admin.replyComment(this)" data-offline-disabled>
<label class="form-check-label" style="cursor:pointer;" for="replyComment">Can Reply Comment</label>
</div>
<div class="form-check form-switch mb-1">
<input class="form-check-input" type="checkbox" role="switch" id="editComment" onchange="admin.editComment(this)" data-offline-disabled>
<label class="form-check-label" for="editComment">Can Edit Comment</label>
<input class="form-check-input" style="cursor:pointer;" type="checkbox" role="switch" id="editComment" onchange="admin.editComment(this)" data-offline-disabled>
<label class="form-check-label" style="cursor:pointer;" for="editComment">Can Edit Comment</label>
</div>
<div class="form-check form-switch mb-1">
<input class="form-check-input" type="checkbox" role="switch" id="deleteComment" onchange="admin.deleteComment(this)" data-offline-disabled>
<label class="form-check-label" for="deleteComment">Can Delete Comment</label>
<input class="form-check-input" style="cursor:pointer;" type="checkbox" role="switch" id="deleteComment" onchange="admin.deleteComment(this)" data-offline-disabled>
<label class="form-check-label" style="cursor:pointer;" for="deleteComment">Can Delete Comment</label>
</div>
</div>

Expand Down

0 comments on commit 4556877

Please sign in to comment.