@afeefa/vue-app 0.0.99 → 0.0.100

Sign up to get free protection for your applications and to get access to all the features.
@@ -1 +1 @@
1
- 0.0.99
1
+ 0.0.100
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@afeefa/vue-app",
3
- "version": "0.0.99",
3
+ "version": "0.0.100",
4
4
  "description": "",
5
5
  "author": "Afeefa Kollektiv <kollektiv@afeefa.de>",
6
6
  "license": "MIT",
@@ -44,13 +44,25 @@ export default class ListFilterSelect extends Mixins(ListFilterMixin) {
44
44
  createOptions () {
45
45
  const options = []
46
46
 
47
- if (this.showNullOption) {
47
+ if (this.filter.allIsOption) {
48
+ options.push({
49
+ itemTitle: 'Alle',
50
+ itemValue: 'all'
51
+ })
52
+ } else if (this.showNullOption) {
48
53
  options.push({
49
54
  itemTitle: 'Alle',
50
55
  itemValue: null
51
56
  })
52
57
  }
53
58
 
59
+ if (this.filter.noneIsOption) {
60
+ options.push({
61
+ itemTitle: 'Keine',
62
+ itemValue: 'none'
63
+ })
64
+ }
65
+
54
66
  return options
55
67
  }
56
68