Skip to content

Commit

Permalink
chore: remove misleading terminology (#1996)
Browse files Browse the repository at this point in the history
  • Loading branch information
abbiesims authored Sep 6, 2024
1 parent c696d1d commit 9711682
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions static/js/src/publisher-admin/pages/Releases/Releases.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export default function Releases() {
if (Object.keys(releaseData.releases).length === 0) {
return (
<EmptyState
title="No releases have been added for this charm yet"
title="No releases have been added for this charm"
image={
<img
src="https://assets.ubuntu.com/v1/3234f995-Generic_chamhub_NoDocs.svg"
Expand Down Expand Up @@ -168,7 +168,7 @@ export default function Releases() {
/>
{channels.length === 0 ? (
<Notification severity="information">
No Releases have been added for this track yet
No Releases have been added for this track
</Notification>
) : (
<ReleasesTable releaseMap={channels} arch={selectedArch} />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ describe("Releases", () => {
renderComponent();
await waitFor(() => {
expect(
screen.getByText("No releases have been added for this charm yet")
screen.getByText("No releases have been added for this charm")
).toBeInTheDocument();
});
});
Expand Down
4 changes: 2 additions & 2 deletions templates/details/configure-bundle.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ <h3>{{ subpackage.name }}</h3>
<div class="p-notification--information">
<div class="p-notification__content">
<p class="p-notification__message">
No configuration details have been added for this charm yet.
No configuration details have been added for this charm.
</p>
</div>
</div>
Expand All @@ -54,7 +54,7 @@ <h3>{{ subpackage.name }}</h3>
<div class="p-notification--information">
<div class="p-notification__content">
<p class="p-notification__message">
No configuration details have been added for this bundle yet.
No configuration details have been added for this bundle.
</p>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion templates/details/configure-charm.html
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<div class="p-notification--information">
<div class="p-notification__content">
<p class="p-notification__message">
No configuration details have been added yet.
No configuration details have been added.
</p>
</div>
</div>
Expand Down

0 comments on commit 9711682

Please sign in to comment.