Merge pull request #533 from edewit/issue-459
changed all cancel buttons to type "link"
This commit is contained in:
commit
c7b87ceeff
9 changed files with 15 additions and 19 deletions
|
@ -80,7 +80,7 @@ export const DuplicateFlowModal = ({
|
|||
<Button
|
||||
id="modal-cancel"
|
||||
key="cancel"
|
||||
variant={ButtonVariant.secondary}
|
||||
variant={ButtonVariant.link}
|
||||
onClick={() => {
|
||||
toggleDialog();
|
||||
}}
|
||||
|
|
|
@ -41,11 +41,7 @@ export const ChangeTypeDialog = ({
|
|||
>
|
||||
{t("common:continue")}
|
||||
</Button>,
|
||||
<Button
|
||||
key="cancel"
|
||||
variant={ButtonVariant.secondary}
|
||||
onClick={onClose}
|
||||
>
|
||||
<Button key="cancel" variant={ButtonVariant.link} onClick={onClose}>
|
||||
{t("common:cancel")}
|
||||
</Button>,
|
||||
]}
|
||||
|
|
|
@ -93,7 +93,7 @@ export const AddMapperDialog = (props: AddMapperDialogProps) => {
|
|||
<Button
|
||||
id="modal-cancel"
|
||||
key="cancel"
|
||||
variant={ButtonVariant.secondary}
|
||||
variant={ButtonVariant.link}
|
||||
onClick={() => {
|
||||
props.toggleDialog();
|
||||
}}
|
||||
|
|
|
@ -26,7 +26,7 @@ exports[`<MapperDialog/> should have disabled add button when nothing is selecte
|
|||
<Button
|
||||
id="modal-cancel"
|
||||
onClick={[Function]}
|
||||
variant="secondary"
|
||||
variant="link"
|
||||
>
|
||||
cancel
|
||||
</Button>,
|
||||
|
@ -1052,8 +1052,8 @@ exports[`<MapperDialog/> should have disabled add button when nothing is selecte
|
|||
</button>
|
||||
<button
|
||||
aria-disabled="false"
|
||||
class="pf-c-button pf-m-secondary"
|
||||
data-ouia-component-id="OUIA-Generated-Button-secondary-1"
|
||||
class="pf-c-button pf-m-link"
|
||||
data-ouia-component-id="OUIA-Generated-Button-link-1"
|
||||
data-ouia-component-type="PF4/Button"
|
||||
data-ouia-safe="true"
|
||||
id="modal-cancel"
|
||||
|
@ -1081,7 +1081,7 @@ exports[`<MapperDialog/> should have disabled add button when nothing is selecte
|
|||
<Button
|
||||
id="modal-cancel"
|
||||
onClick={[Function]}
|
||||
variant="secondary"
|
||||
variant="link"
|
||||
>
|
||||
cancel
|
||||
</Button>,
|
||||
|
@ -20303,13 +20303,13 @@ exports[`<MapperDialog/> should have disabled add button when nothing is selecte
|
|||
id="modal-cancel"
|
||||
key="cancel"
|
||||
onClick={[Function]}
|
||||
variant="secondary"
|
||||
variant="link"
|
||||
>
|
||||
<button
|
||||
aria-disabled={false}
|
||||
aria-label={null}
|
||||
className="pf-c-button pf-m-secondary"
|
||||
data-ouia-component-id="OUIA-Generated-Button-secondary-1"
|
||||
className="pf-c-button pf-m-link"
|
||||
data-ouia-component-id="OUIA-Generated-Button-link-1"
|
||||
data-ouia-component-type="PF4/Button"
|
||||
data-ouia-safe={true}
|
||||
disabled={false}
|
||||
|
|
|
@ -71,7 +71,7 @@ export const AddHostDialog = ({
|
|||
<Button
|
||||
id="add-node-cancel"
|
||||
key="cancel"
|
||||
variant={ButtonVariant.secondary}
|
||||
variant={ButtonVariant.link}
|
||||
onClick={() => onClose()}
|
||||
>
|
||||
{t("common:cancel")}
|
||||
|
|
|
@ -79,7 +79,7 @@ export const AddScopeDialog = ({
|
|||
<Button
|
||||
id="modal-cancel"
|
||||
key="cancel"
|
||||
variant={ButtonVariant.secondary}
|
||||
variant={ButtonVariant.link}
|
||||
onClick={() => {
|
||||
setRows([]);
|
||||
toggleDialog();
|
||||
|
|
|
@ -77,7 +77,7 @@ export const GroupsModal = ({
|
|||
<Button
|
||||
id="modal-cancel"
|
||||
key="cancel"
|
||||
variant={ButtonVariant.secondary}
|
||||
variant={ButtonVariant.link}
|
||||
onClick={() => {
|
||||
handleModalToggle();
|
||||
}}
|
||||
|
|
|
@ -82,7 +82,7 @@ export const MemberModal = ({ groupId, onClose }: MemberModalProps) => {
|
|||
<Button
|
||||
data-testid="cancel"
|
||||
key="cancel"
|
||||
variant="secondary"
|
||||
variant="link"
|
||||
onClick={onClose}
|
||||
>
|
||||
{t("common:cancel")}
|
||||
|
|
|
@ -92,7 +92,7 @@ export const MoveGroupDialog = ({
|
|||
<Button
|
||||
data-testid="moveCancel"
|
||||
key="cancel"
|
||||
variant="secondary"
|
||||
variant="link"
|
||||
onClick={onClose}
|
||||
>
|
||||
{t("common:cancel")}
|
||||
|
|
Loading…
Reference in a new issue