mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-07-05 02:28:31 +00:00
4.0.0-rc5.1
* Fixed: UI state not updating correctly for Blocked Terms that were created before the rc5 release.
This commit is contained in:
parent
f15d3c1d4f
commit
205306fd48
3 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
<div class="list-header">4.0.0-rc5.1<span>@5cda0595608c64d32de4</span> <time datetime="2018-07-14">(2018-07-14)</time></div>
|
||||
<ul class="chat-menu-content menu-side-padding">
|
||||
<li>Fixed: UI state not updating correctly for Blocked Terms that were created before the rc5 update.</li>
|
||||
</ul>
|
||||
|
||||
<div class="list-header">4.0.0-rc5<span>@a36c49ab78f754fcd1c6</span> <time datetime="2018-07-14">(2018-07-14)</time></div>
|
||||
<ul class="chat-menu-content menu-side-padding">
|
||||
<li>Added: Remove messages entirely using Blocked Terms.</li>
|
||||
|
|
|
@ -100,7 +100,7 @@ class FrankerFaceZ extends Module {
|
|||
FrankerFaceZ.Logger = Logger;
|
||||
|
||||
const VER = FrankerFaceZ.version_info = {
|
||||
major: 4, minor: 0, revision: 0, extra: '-rc5',
|
||||
major: 4, minor: 0, revision: 0, extra: '-rc5.1',
|
||||
build: __webpack_hash__,
|
||||
toString: () =>
|
||||
`${VER.major}.${VER.minor}.${VER.revision}${VER.extra || ''}${DEBUG ? '-dev' : ''}`
|
||||
|
|
|
@ -229,7 +229,7 @@ export default {
|
|||
methods: {
|
||||
edit() {
|
||||
this.editing = true;
|
||||
this.edit_data = deep_copy(this.term);
|
||||
this.edit_data = Object.assign({remove: false}, deep_copy(this.term));
|
||||
},
|
||||
|
||||
toggleRemove() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue