Updates for audatex claims & mapa/mash calculations IO-718

This commit is contained in:
Patrick Fic
2021-03-04 13:23:52 -08:00
parent 7566f61d83
commit 0d317578b2
4 changed files with 28 additions and 6 deletions

View File

@@ -378,3 +378,13 @@ export const TemplateList = (type, context) => {
: {}),
};
};
function getComponentPath(formItem) {
const { type } = formItem;
switch (type) {
case "checkbox":
return "/components/checkbox";
default:
return null;
}
}