agile-se1 / bit-web

Detected usage of the any type JS-0323
Anti-pattern
Critical
5 months ago5 months old
Unexpected any. Specify a different type
123}
124
125
126function showModal(item: any) {127    modalValue.value.user = item.user;
128    modalValue.value.generalPresentationDecision = item.generalPresentationDecision;
129    modalValue.value.professionalFieldDecision1 = item.professionalFieldDecision1;
Unexpected any. Specify a different type
109    showDeleteModal.value = true;
110}
111
112let newMail = (item: any) => {113    userToNewMail.value = item;
114    showNewLinkModal.value = true;
115}
Unexpected any. Specify a different type
104let userToDelete = ref({});
105let userToNewMail = ref({});
106
107let deleteUser = (item: any) => {108    userToDelete.value = item;
109    showDeleteModal.value = true;
110}