From 3f8fcbcfc1200b842741a099a574b5b03a12b9b4 Mon Sep 17 00:00:00 2001 From: Frank Duncan Date: Wed, 24 Apr 2024 06:16:44 -0500 Subject: [PATCH] Fix error in all submissions table Withdrawn status needs to be added to a mapping, apparently :) Issue #3296 --- hypha/apply/funds/utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/hypha/apply/funds/utils.py b/hypha/apply/funds/utils.py index 089e0cbe50..2fff9eebd0 100644 --- a/hypha/apply/funds/utils.py +++ b/hypha/apply/funds/utils.py @@ -94,6 +94,7 @@ def model_form_initial(instance, fields=None, exclude=None): ], "accepted": ["accepted"], "dismissed": ["dismissed"], + "withdrawn": ["withdrawn"], }