@afeefa/vue-app 0.0.93 → 0.0.94
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.94
|
package/package.json
CHANGED
@@ -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