1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-07-24 11:38:30 +00:00

4.0.0-rc20.4

* Fixed: Infinite loop bug with badges. Sorry about that.
* Fixed: Bug with the Room Actions editor's preview check-boxes.
This commit is contained in:
SirStendec 2019-05-08 22:47:38 -04:00
parent 6dde27ca82
commit ba49d6b49c
5 changed files with 37 additions and 26 deletions

View file

@ -27,7 +27,7 @@
</label>
</div>
<div v-if="item.inline && has_msg" class="tw-pd-x-1 tw-checkbox">
<div v-if="has_msg" class="tw-pd-x-1 tw-checkbox">
<input
id="is_deleted"
ref="is_deleted"
@ -449,7 +449,7 @@ export default {
this.is_moderator = this.$refs.as_mod.checked;
this.is_staff = false; //this.$refs.as_staff.checked;
this.with_mod_icons = this.item.inline && this.$refs.with_mod_icons.checked;
this.is_deleted = this.item.inline && this.$refs.is_deleted.checked;
this.is_deleted = this.has_msg && this.$refs.is_deleted.checked;
},
displayAction(action) {