We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f799a0 commit 5f173f0Copy full SHA for 5f173f0
1 file changed
src/ui/root/DeputyContributionSurveyRow.tsx
@@ -511,7 +511,11 @@ export default class DeputyContributionSurveyRow extends EventTarget implements
511
512
const unfinishedWithStatus = this.statusModified && !this.completed;
513
if ( this.unfinishedMessageBox ) {
514
- this.unfinishedMessageBox.toggle( unfinishedWithStatus );
+ this.unfinishedMessageBox.toggle(
515
+ // If using danger mode, this should always be enabled.
516
+ window.deputy.config.core.dangerMode.get() ||
517
+ unfinishedWithStatus
518
+ );
519
}
520
this.statusAutosaveFunction();
521
0 commit comments