@shisyamo4131/air-guard-v2-schemas 2.4.2-dev.79 → 2.4.2-dev.80
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.
- package/package.json +1 -1
- package/src/Employee.js +0 -4
- package/src/User.js +1 -0
package/package.json
CHANGED
package/src/Employee.js
CHANGED
|
@@ -144,8 +144,6 @@ export default class Employee extends GeocodableMixin(FireModel) {
|
|
|
144
144
|
attrs: {
|
|
145
145
|
required: ({ item }) =>
|
|
146
146
|
item.employmentStatus === EMPLOYMENT_STATUS_VALUES.TERMINATED.value,
|
|
147
|
-
disabled: ({ item }) =>
|
|
148
|
-
item.employmentStatus !== EMPLOYMENT_STATUS_VALUES.TERMINATED.value,
|
|
149
147
|
},
|
|
150
148
|
},
|
|
151
149
|
}),
|
|
@@ -175,8 +173,6 @@ export default class Employee extends GeocodableMixin(FireModel) {
|
|
|
175
173
|
attrs: {
|
|
176
174
|
required: ({ item }) =>
|
|
177
175
|
item.employmentStatus === EMPLOYMENT_STATUS_VALUES.TERMINATED.value,
|
|
178
|
-
disabled: ({ item }) =>
|
|
179
|
-
item.employmentStatus !== EMPLOYMENT_STATUS_VALUES.TERMINATED.value,
|
|
180
176
|
},
|
|
181
177
|
},
|
|
182
178
|
}),
|
package/src/User.js
CHANGED