-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[#1883] Fix override file uploads per status type #865
Conversation
6494ace
to
fa8e0de
Compare
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## develop #865 +/- ##
===========================================
- Coverage 92.80% 92.79% -0.01%
===========================================
Files 798 797 -1
Lines 27422 27450 +28
===========================================
+ Hits 25449 25473 +24
- Misses 1973 1977 +4 ☔ View full report in Codecov by Sentry. |
@@ -234,12 +241,9 @@ def get_context_data(self, **kwargs): | |||
|
|||
return context | |||
|
|||
def add_second_status_preview(self, statuses: list, statustypen: list) -> None: | |||
def get_second_status_preview(self, statustypen: list) -> Optional[StatusType]: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just to double check: this is to get the preview of the actual second status and not the next status, right?
a49f645
to
1da2ead
Compare
1da2ead
to
245dfdd
Compare
File uploads could be enabled/disabled per case type, but overriding this per status type did not work because the preview for the upcoming second case status was handled inconsistently between back-end and fron-end.
Taiga #1833