Skip to content

Commit

Permalink
Simplify CV language
Browse files Browse the repository at this point in the history
This also applies to rolling CVs which are not published.
The corner case of a repo that is part of a normal CV, but has not yet
been published is not so essential here.
  • Loading branch information
quba42 committed Jan 10, 2025
1 parent 2cfe5b5 commit 27c93d8
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 @@ -9,7 +9,7 @@ const EnabledRepositoryContent = ({
}) => (
<Spinner loading={loading} inline>
<OverlayTrigger
overlay={<Tooltip id={disableTooltipId}>{canDisable ? __('Disable') : __('Cannot be disabled because it is part of a published content view')}</Tooltip>}
overlay={<Tooltip id={disableTooltipId}>{canDisable ? __('Disable') : __('Cannot be disabled because it is part of a content view')}</Tooltip>}
placement="bottom"
trigger={['hover', 'focus']}
rootClose={false}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ exports[`Enabled Repositories Content Component should render 1`] = `
id="disable-1"
placement="right"
>
Cannot be disabled because it is part of a published content view
Cannot be disabled because it is part of a content view
</Tooltip>
}
placement="bottom"
Expand Down

0 comments on commit 27c93d8

Please sign in to comment.