Skip to content

Commit

Permalink
Fixes #36782 - Update UI in preparation for SCA-only
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremylenz committed Sep 26, 2023
1 parent e75f1f1 commit 467495b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
</div>
<div id="non-sca-banner" bst-alert="warning" ng-if="!simpleContentAccessEnabled">
<span translate>
This organization is not using <a target="_blank" href="https://access.redhat.com/articles/simple-content-access">Simple Content Access.</a> Entitlement-based subscription management is deprecated and will be removed in a future version.
This organization is not using <a target="_blank" href="https://access.redhat.com/articles/simple-content-access">Simple Content Access.</a> Entitlement-based subscription management is deprecated and will be removed in Katello 4.12.
</span>
</div>
4 changes: 2 additions & 2 deletions webpack/scenes/Subscriptions/SubscriptionsPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ class SubscriptionsPage extends Component {
};

const SCAAlert = (
<Alert ouiaId="sca-alert" type={simpleContentAccess ? 'info' : 'warning'}>
<Alert ouiaId="sca-alert" type="warning">
<FormattedMessage
id="sca-alert"
values={{
Expand All @@ -231,7 +231,7 @@ class SubscriptionsPage extends Component {
defaultMessage={simpleContentAccess ? __(`This organization has Simple Content Access enabled.
Hosts are not required to have subscriptions attached to access repositories.
{br}
Learn more about your overall subscription usage with the {subscriptionsService}.`) : __('This organization is not using {scaLink}. Entitlement-based subscription management is deprecated and will be removed in a future version.')}
Learn more about your overall subscription usage with the {subscriptionsService}.`) : __('This organization is not using {scaLink}. Entitlement-based subscription management is deprecated and will be removed in Katello 4.12.')}
/>
</Alert>
);
Expand Down

0 comments on commit 467495b

Please sign in to comment.