Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@ const CredentialsPrompt = ({
</Grid>
<Grid item xs={12} className={classes.buttonContainer}>
<Button
id={"done-button"}
variant="outlined"
className={classes.buttonSpacer}
onClick={() => {
Expand All @@ -186,6 +187,7 @@ const CredentialsPrompt = ({

{!idp && (
<Button
id={"download-button"}
onClick={() => {
let consoleExtras = {};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,7 @@ const GenericWizard = ({
{wizardSteps.map((step, index) => {
return (
<ListItem
id={"wizard-step-" + step.label}
button
disableRipple
onClick={() => pageChange(index)}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ const WizardPage = ({
{page.buttons.map((btn) => {
return (
<Button
id={"wizard-button-" + btn.label}
variant="contained"
color="primary"
size="small"
Expand Down
1 change: 1 addition & 0 deletions portal-ui/src/screens/Console/Menu/ConsoleMenuList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,7 @@ const ConsoleMenuList = ({
</ListItemIcon>
<ListItemText
primary="Logout"
id={"logout"}
sx={{ ...menuItemTextStyles }}
className={stateClsName}
/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,7 @@ const ListTenants = ({ classes, setErrorSnackMessage }: ITenantsList) => {
/>

<RBIconButton
id={"refresh-tenant-list"}
tooltip={"Refresh Tenant List"}
text={""}
onClick={() => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ const TenantListItem = ({ tenant, classes }: ITenantListItem) => {
</Grid>
<Grid item xs={4} textAlign={"end"}>
<RBIconButton
id={"manage-tenant-" + tenant.name}
tooltip={"Manage Tenant"}
text={"Manage"}
disabled={!tenantIsOnline(tenant)}
Expand All @@ -190,6 +191,7 @@ const TenantListItem = ({ tenant, classes }: ITenantListItem) => {
variant={"outlined"}
/>
<RBIconButton
id={"view-tenant-" + tenant.name}
tooltip={"View Tenant"}
text={"View"}
onClick={() => {
Expand Down