Skip to content

Commit

Permalink
Fixes #36687 - Changed button text to 'Save' when editing content vie…
Browse files Browse the repository at this point in the history
…w errata by date range filters and rpm filters

Fixed poor auto-corrected formatting.
  • Loading branch information
qcjames53 committed Aug 21, 2023
1 parent acd85a4 commit a9bdfbc
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 a9bdfbc

Please sign in to comment.