@afeefa/vue-app 0.0.93 → 0.0.95
Sign up to get free protection for your applications and to get access to all the features.
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.95
|
package/package.json
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
{
|
2
2
|
"name": "@afeefa/vue-app",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.95",
|
4
4
|
"description": "",
|
5
5
|
"author": "Afeefa Kollektiv <kollektiv@afeefa.de>",
|
6
6
|
"license": "MIT",
|
7
7
|
"devDependencies": {
|
8
|
-
"core-js": "^3.
|
9
|
-
"vue": "^2.
|
8
|
+
"core-js": "^3.25.5",
|
9
|
+
"vue": "^2.7.10",
|
10
10
|
"vue-class-component": "^7.2.6",
|
11
11
|
"vue-property-decorator": "^9.1.2"
|
12
12
|
}
|
@@ -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
|
}
|
package/src-admin/styles.scss
CHANGED