Added translations, fixed inbox, minor updates to pages

This commit is contained in:
Anton Stubenbord
2023-02-03 00:27:14 +01:00
parent ba5a1fcbc7
commit 3f305ce1d6
24 changed files with 982 additions and 177 deletions

View File

@@ -8,6 +8,6 @@ class PaperlessServerStatisticsModel {
});
PaperlessServerStatisticsModel.fromJson(Map<String, dynamic> json)
: documentsTotal = json['documents_total'],
documentsInInbox = json['documents_inbox'];
: documentsTotal = json['documents_total'] ?? 0,
documentsInInbox = json['documents_inbox'] ?? 0;
}