Skip to content

Commit 7a4b7d2

Browse files
author
Andrew Cai
committed
[yugabyte#7494][YW] Hide Pause Universe in universe actions dropdown
Summary: Since Pause Universe functionality is currently broken, hide the option to Pause Universe in the UniverseDetail dropdown. Test Plan: Click any universe and go to overview tab. Confirm that the More dropdown does not contain an option to "Pause Universe". Reviewers: sshevchenko Reviewed By: sshevchenko Subscribers: streddy, ui Differential Revision: https://phabricator.dev.yugabyte.com/D10802
1 parent 9c9f179 commit 7a4b7d2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

managed/ui/src/components/universes/UniverseDetail/UniverseDetail.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -572,13 +572,13 @@ class UniverseDetail extends Component {
572572
providers and once that's done this condition needs to be removed.
573573
2. One more condition needs to be added which specifies the
574574
current status of the universe. */}
575-
{isAWSUniverse(currentUniverse?.data) &&
575+
{/* isAWSUniverse(currentUniverse?.data) &&
576576
<YBMenuItem onClick={showToggleUniverseStateModal}>
577577
<YBLabelWithIcon icon="fa fa-pause-circle-o">
578578
{!universePaused ? 'Pause Universe' : 'Resume Universe'}
579579
</YBLabelWithIcon>
580580
</YBMenuItem>
581-
}
581+
*/}
582582

583583
<YBMenuItem
584584
onClick={showDeleteUniverseModal}

0 commit comments

Comments
 (0)