1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-09-16 18:06:55 +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:
SirStendec 2018-07-14 15:06:00 -04:00
parent f15d3c1d4f
commit 205306fd48
3 changed files with 7 additions and 2 deletions

View file

@ -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' : ''}`

View file

@ -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() {