diff --git a/ToDo.md b/ToDo.md index 421454c..c6daeae 100644 --- a/ToDo.md +++ b/ToDo.md @@ -38,6 +38,7 @@ * API endpunkte für Export/Import aus Commit 2dcb4e00faaf316b98eb28e83cc5137bf0d1385d * wouldn't it be a good idea to remove the GameSystem from all the records and define it in a kind of manifest. The values in the manifest could be applied to all records (where needed) during the import session. export_import.go * maintanance view for gsm_cc_class_category_points +* Todo: calculate poison tolerance based on character data (frontend/src/components/DatasheetView.vue) ## Refaktor diff --git a/frontend/src/components/DatasheetView.vue b/frontend/src/components/DatasheetView.vue index 630789b..95b7bdd 100644 --- a/frontend/src/components/DatasheetView.vue +++ b/frontend/src/components/DatasheetView.vue @@ -260,7 +260,7 @@ export default { }, getStat(path) { if (path === 'git') { - // Todo: calculate poison tolerance based on character data (frontend/src/components/DatasheetView.vue) + // Todo: calculate poison tolerance based on character data return '64!' } return path.split('.').reduce((obj, key) => obj?.[key], this.character) ?? '-'