@afeefa/vue-app 0.0.93 → 0.0.94

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1 @@
1
- 0.0.93
1
+ 0.0.94
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@afeefa/vue-app",
3
- "version": "0.0.93",
3
+ "version": "0.0.94",
4
4
  "description": "",
5
5
  "author": "Afeefa Kollektiv <kollektiv@afeefa.de>",
6
6
  "license": "MIT",
@@ -171,10 +171,6 @@ export default class ARichTextArea extends Vue {
171
171
  this.internalValue = this.value
172
172
  }
173
173
 
174
- changed () {
175
- console.log('Changed')
176
- }
177
-
178
174
  mounted () {
179
175
  this.editorFocus = !!this.focus
180
176
 
@@ -57,6 +57,9 @@ export default class ListColumnHeader extends Vue {
57
57
  if (this.orderValue) {
58
58
  return this.orderValue
59
59
  } else {
60
+ if (!this.filter.options[this.order]) {
61
+ console.warn(`Order filter ${this.order} not defined.`)
62
+ }
60
63
  const direction = this.filter.options[this.order][0]
61
64
  return direction || 'asc'
62
65
  }
@@ -71,10 +71,9 @@
71
71
  }
72
72
 
73
73
  .theme--light.v-btn:focus-visible {
74
- outline: 2px solid #1976d2;
74
+ outline: 2px solid #1976D2;
75
75
  }
76
76
 
77
-
78
77
  .theme--light.v-btn.v-btn--disabled.v-btn--has-bg {
79
78
  background-color: #EEEEEE !important;
80
79
  }