diff --git a/ui/src/views/Rules/ListRules/index.jsx b/ui/src/views/Rules/ListRules/index.jsx index d40da4baa..e1933ad20 100644 --- a/ui/src/views/Rules/ListRules/index.jsx +++ b/ui/src/views/Rules/ListRules/index.jsx @@ -940,6 +940,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 @@ -1076,6 +1079,7 @@ function ListRules(props) { const dialogStates = { delete: deleteDialogBody, signoff: signoffDialogBody, + signoffEnableUpdates: signoffDialogBody, disableUpdates: disableUpdatesBody, };