[WIP] Добавил отображение состояния и подвижности зубов

This commit is contained in:
DwCay
2023-05-29 18:09:01 +03:00
parent ff6678af09
commit e11a628c78
8 changed files with 808 additions and 26 deletions

View File

@@ -54,3 +54,11 @@ export function getConfidantObject(data) {
};
}
}
export const getFiiledConditions = (condition) => {
let filledConditions = [
...Object.values(condition.crown).filter((val) => val),
...Object.values(condition.root).filter((val) => val),
];
return filledConditions;
};