project-booster-vue 9.13.2 → 9.13.3
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
CHANGED
|
@@ -70,7 +70,7 @@ const declarationsWithoutAppointment = async (data: any) => {
|
|
|
70
70
|
);
|
|
71
71
|
};
|
|
72
72
|
|
|
73
|
-
const linkInhabitantProjectToAppointmentQualification = async (data: any, inhabitantProjectId:
|
|
73
|
+
const linkInhabitantProjectToAppointmentQualification = async (data: any, inhabitantProjectId: string) => {
|
|
74
74
|
const response = await clientApi.post(
|
|
75
75
|
`/inhabitant-projects/${inhabitantProjectId}/appointment-qualifications`,
|
|
76
76
|
data,
|
|
@@ -178,7 +178,7 @@ export default {
|
|
|
178
178
|
},
|
|
179
179
|
correlationId: state.sessions.correlationId,
|
|
180
180
|
};
|
|
181
|
-
const result = await linkInhabitantProjectToAppointmentQualification(state.sessions.inhabitantProjectId
|
|
181
|
+
const result = await linkInhabitantProjectToAppointmentQualification(data, state.sessions.inhabitantProjectId);
|
|
182
182
|
commit('setCurrentAppointmentQualification', result);
|
|
183
183
|
commit('setIsLoadingProject', false);
|
|
184
184
|
} catch (e) {
|