From e5c063581a554303743e2684c230315ddba3928d Mon Sep 17 00:00:00 2001 From: Jacob Walls Date: Thu, 7 Nov 2024 16:22:10 -0500 Subject: [PATCH] Improve todo --- arches/app/views/api/mixins.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arches/app/views/api/mixins.py b/arches/app/views/api/mixins.py index dd404fd4c7..83c668e8ea 100644 --- a/arches/app/views/api/mixins.py +++ b/arches/app/views/api/mixins.py @@ -63,6 +63,8 @@ def update(self, request, *args, **kwargs): user=request.user, permission_callable=user_can_edit_resource, ) + # TODO: returned object is pretty close, but currently lacks + # recalculated display_value on RI datatypes. return super().update(request, *args, **kwargs) def destroy(self, request, *args, **kwargs):