From 264532c7cf36adf6c1b918e39e4dba02d88456bd Mon Sep 17 00:00:00 2001 From: Anton Vakhrushev Date: Wed, 24 Jun 2020 13:53:07 +0300 Subject: [PATCH] Remove rare used controls --- src/DashboardView/VillageStateList.vue | 32 +++----------------------- 1 file changed, 3 insertions(+), 29 deletions(-) diff --git a/src/DashboardView/VillageStateList.vue b/src/DashboardView/VillageStateList.vue index 6c87c4f..3f38081 100644 --- a/src/DashboardView/VillageStateList.vue +++ b/src/DashboardView/VillageStateList.vue @@ -21,11 +21,7 @@ :title="villageHint(villageState)" > {{ villageState.village.name }} - [ред] [👁️]: + [ред]: - - - - @@ -231,12 +211,6 @@ export default { openEditor(villageId) { this.$store.dispatch(Actions.OpenVillageEditor, { villageId }); }, - isExtended(villageId) { - return !!this.extendedView[villageId] || this.shared.activeVillageState.id === villageId; - }, - toggleExtendedView(villageId) { - this.extendedView[villageId] = !this.extendedView[villageId]; - }, queueTitle(queue) { return translateProductionQueue(queue); },