Skip to content

Commit

Permalink
Fixes #36687 - Change button text to 'Save' when editing content view…
Browse files Browse the repository at this point in the history
… errata by date range filters and rpm filters (#10702)

Fixed poor auto-corrected formatting.

(cherry picked from commit afcee25)
  • Loading branch information
qcjames53 authored and chris1984 committed Sep 6, 2023
1 parent 059cc81 commit 274f53c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ const CVErrataDateFilterContent = ({
isDisabled={saveDisabled}
type="submit"
>
{__('Edit rule')}
{__('Save')}
</Button>
<Link to={`/content_views/${cvId}#/filters`}>
<Button ouiaId="cancel-save-filter-rule-button" variant="link">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ const AddEditPackageRuleModal = ({
isDisabled={saving || submitDisabled}
type="submit"
>
{selectedFilterRuleData ? __('Edit rule') : __('Add rule')}
{selectedFilterRuleData ? __('Save') : __('Add rule')}
</Button>
<Button ouiaId="add-edit-package-modal-cancel" variant="link" onClick={onClose}>
{__('Cancel')}
Expand Down

0 comments on commit 274f53c

Please sign in to comment.