Small tweaks (#1754)

Signed-off-by: Daniel Valdivia <18384552+dvaldivia@users.noreply.github.com>
This commit is contained in:
Daniel Valdivia
2022-03-23 14:28:13 -07:00
committed by GitHub
parent bef3897d0a
commit cca04dca1c
2 changed files with 7 additions and 7 deletions

View File

@@ -34,11 +34,11 @@ import {
import { ErrorResponseHandler } from "../../../../common/types";
import { AppState } from "../../../../store";
import {
SecureComponent,
hasPermission,
SecureComponent,
} from "../../../../common/SecureComponent";
import { IAM_SCOPES } from "../../../../common/SecureComponent/permissions";
import { AddIcon, DeleteIcon, BucketsIcon } from "../../../../icons";
import { AddIcon, BucketsIcon, TrashIcon } from "../../../../icons";
import api from "../../../../common/api";
import TableWrapper from "../../Common/TableWrapper/TableWrapper";
import HelpBox from "../../../../common/HelpBox";
@@ -236,12 +236,12 @@ const BucketReplicationPanel = ({
errorProps={{ disabled: true }}
>
<RBIconButton
tooltip={"Remove All Replication Rules"}
tooltip={"Delete All Replication Rules"}
onClick={() => {
confirmDeleteAllReplicationRules();
}}
text={"Remove All Rules"}
icon={<DeleteIcon />}
text={"Delete All Rules"}
icon={<TrashIcon />}
color={"secondary"}
variant={"outlined"}
disabled={replicationRules.length === 0}

View File

@@ -1243,7 +1243,7 @@ const ListObjects = ({
<RBIconButton
id={"refresh-objects-list"}
tooltip={"Reload List"}
text={"Reload"}
text={"Refresh"}
icon={<RefreshIcon />}
color="primary"
variant={"outlined"}
@@ -1305,7 +1305,7 @@ const ListObjects = ({
name={"deleted_objects"}
id={"showDeletedObjects"}
value={"deleted_on"}
label={"Show deleted objects on this bucket"}
label={"Show deleted objects"}
onChange={setDeletedAction}
checked={showDeleted}
overrideLabelClasses={classes.labelStyle}