feat(v4): Add new contact details screen (#10504)

Co-authored-by: Pranav <pranavrajs@gmail.com>
This commit is contained in:
Sivin Varghese
2024-12-03 21:29:47 -08:00
committed by GitHub
co-authored by Pranav
parent d4b6f710bd
commit 769b7171f4
37 changed files with 1353 additions and 221 deletions
@@ -35,6 +35,12 @@ export const getters = {
record => record.attribute_model === attributeModel
);
},
getAttributesByModelType: _state => attributeModel => {
const records = _state.records.filter(
record => record.attribute_model === attributeModel
);
return camelcaseKeys(records, { deep: true });
},
};
export const actions = {