Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/components/analytics/metrics-table.vue
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,8 @@ export default {
"num_creation_forms": "Number of Forms that update the Dataset",
"num_followup_forms": "Number of Forms that use the Dataset",
"num_entities": "Number of Entities in the Dataset",
"num_failed_entities": "Number of Entity creation errors"
"num_failed_entities": "Number of Entity creation errors",
"num_entity_updates": "Number of Entity updates"
}
}
}
Expand Down
6 changes: 4 additions & 2 deletions test/components/analytics/preview.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ const analyticsPreview = {
num_creation_forms: 1,
num_followup_forms: 1,
num_entities: { total: 10, recent: 5 },
num_failed_entities: { total: 2, recent: 1 }
num_failed_entities: { total: 2, recent: 1 },
num_entity_updates: { total: 15, recent: 8 }
}
]
}
Expand Down Expand Up @@ -132,7 +133,8 @@ describe('AnalyticsPreview', () => {
num_creation_forms: 1,
num_followup_forms: 1,
num_entities: { total: 10, recent: 5 },
num_failed_entities: { total: 2, recent: 1 }
num_failed_entities: { total: 2, recent: 1 },
num_entity_updates: { total: 15, recent: 8 }
};
table.props().metrics.should.eql(subMetrics);
});
Expand Down
3 changes: 3 additions & 0 deletions transifex/strings_en.json
Original file line number Diff line number Diff line change
Expand Up @@ -1168,6 +1168,9 @@
},
"num_failed_entities": {
"string": "Number of Entity creation errors"
},
"num_entity_updates": {
"string": "Number of Entity updates"
}
}
},
Expand Down