remove unnecessary garbage

pull/211/head
Aevann 2023-10-02 05:47:05 +03:00
parent 9245db0328
commit 177a460ba9
1 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@
{% if FEATURES['NSFW_MARKING'] %}
<div class="custom-control custom-checkbox mt-4">
<input autocomplete="off" type="checkbox" class="custom-control-input" id="emoji-over-18" name="over_18" data-nonce="{{g.nonce}}" data-onchange="savetext()">
<input autocomplete="off" type="checkbox" class="custom-control-input" id="emoji-over-18" name="over_18">
<label class="custom-control-label" for="emoji-over-18">18+</label>
</div>
{% endif %}
@ -101,7 +101,7 @@
{% if FEATURES['NSFW_MARKING'] %}
<div class="custom-control custom-checkbox mt-4">
<input autocomplete="off" type="checkbox" class="custom-control-input" id="{{emoji.name}}-over-18" name="over_18" data-nonce="{{g.nonce}}" data-onchange="savetext()" {% if v.admin_level < PERMS['MODERATE_PENDING_SUBMITTED_ASSETS'] %}readonly{% endif %} {% if emoji.over_18 %}checked{% endif %}>
<input autocomplete="off" type="checkbox" class="custom-control-input" id="{{emoji.name}}-over-18" name="over_18" {% if v.admin_level < PERMS['MODERATE_PENDING_SUBMITTED_ASSETS'] %}readonly{% endif %} {% if emoji.over_18 %}checked{% endif %}>
<label class="custom-control-label" for="{{emoji.name}}-over-18">18+</label>
</div>
{% endif %}