diff --git a/agent/run.sh b/agent/run.sh old mode 100755 new mode 100644 diff --git a/agent/scripts/test-entrypoint.sh b/agent/scripts/test-entrypoint.sh old mode 100755 new mode 100644 diff --git a/client/setup.py b/client/setup.py old mode 100755 new mode 100644 diff --git a/maintenance/pin-helper.sh b/maintenance/pin-helper.sh old mode 100755 new mode 100644 diff --git a/maintenance/pin.sh b/maintenance/pin.sh old mode 100755 new mode 100644 diff --git a/scripts/adhoc-tests.py b/scripts/adhoc-tests.py old mode 100755 new mode 100644 diff --git a/scripts/initdb_and_run.sh b/scripts/initdb_and_run.sh old mode 100755 new mode 100644 diff --git a/scripts/manage-db.py b/scripts/manage-db.py old mode 100755 new mode 100644 diff --git a/scripts/reset-stage-db.sh b/scripts/reset-stage-db.sh old mode 100755 new mode 100644 diff --git a/scripts/run-batch-deletes.sh b/scripts/run-batch-deletes.sh old mode 100755 new mode 100644 diff --git a/scripts/run.sh b/scripts/run.sh old mode 100755 new mode 100644 diff --git a/scripts/test-rules.py b/scripts/test-rules.py old mode 100755 new mode 100644 diff --git a/src/auslib/blobs/apprelease.py b/src/auslib/blobs/apprelease.py old mode 100755 new mode 100644 diff --git a/src/auslib/blobs/base.py b/src/auslib/blobs/base.py old mode 100755 new mode 100644 diff --git a/taskcluster/docker/skopeo/push_image.sh b/taskcluster/docker/skopeo/push_image.sh old mode 100755 new mode 100644 diff --git a/taskcluster/scripts/get-coveralls-token b/taskcluster/scripts/get-coveralls-token old mode 100755 new mode 100644 diff --git a/tests/blobs/test_apprelease.py b/tests/blobs/test_apprelease.py old mode 100755 new mode 100644 diff --git a/ui/scripts/deploy b/ui/scripts/deploy old mode 100755 new mode 100644 diff --git a/ui/src/views/Rules/ListRules/index.jsx b/ui/src/views/Rules/ListRules/index.jsx index 9f0e0a4dff..5c1cf84f09 100644 --- a/ui/src/views/Rules/ListRules/index.jsx +++ b/ui/src/views/Rules/ListRules/index.jsx @@ -932,6 +932,9 @@ function ListRules(props) { }; const handleSignoffEnableUpdates = async () => { + setRequiredRoles( + Object.keys(filteredRulesWithScheduledChanges[0].required_signoffs) + ); const [product, channel] = productChannelQueries; const esDetails = emergencyShutoffs.find( es => es.product === product && es.channel === channel @@ -1068,6 +1071,7 @@ function ListRules(props) { const dialogStates = { delete: deleteDialogBody, signoff: signoffDialogBody, + signoffEnableUpdates: signoffDialogBody, disableUpdates: disableUpdatesBody, };