summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/client/app/desktop/views/deck/deck.column.vue20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/client/app/desktop/views/deck/deck.column.vue b/src/client/app/desktop/views/deck/deck.column.vue
index f731e2e9b1..1fd6952a39 100644
--- a/src/client/app/desktop/views/deck/deck.column.vue
+++ b/src/client/app/desktop/views/deck/deck.column.vue
@@ -65,6 +65,16 @@ export default Vue.extend({
}
},
+ data() {
+ return {
+ count: 0,
+ active: true,
+ dragging: false,
+ draghover: false,
+ dropready: false
+ };
+ },
+
computed: {
isTemporaryColumn(): boolean {
return this.column == null;
@@ -84,16 +94,6 @@ export default Vue.extend({
getColumnVm: { from: 'getColumnVm' }
},
- data() {
- return {
- count: 0,
- active: true,
- dragging: false,
- draghover: false,
- dropready: false
- };
- },
-
watch: {
active(v) {
if (v && this.isScrollTop()) {