Поправила баг в документах

This commit is contained in:
Daria Golova
2023-09-19 17:05:29 +03:00
parent 48e2571c77
commit 7b2e07f0d2
7 changed files with 34 additions and 11 deletions

View File

@@ -148,7 +148,12 @@ export default {
return this.$store.state.medical.documents;
},
passportFields() {
let excludedFields = ["attachments", "id", "category"];
let excludedFields = [
"attachments",
"id",
"category",
"issued_by_org_code",
];
return Object.keys(this.docData.passport).filter(
(key) => !excludedFields.includes(key)
);