Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion web/html/src/manager/images/image-profiles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,6 @@ class ImageProfiles extends React.Component<Props, State> {
target="delete-selected-modal"
/>
)}
<AsyncButton id="reload" icon="fa-refresh" text={t("Refresh")} action={this.reloadData} />
{window.isAdmin && (
<LinkButton
id="create"
Expand All @@ -149,6 +148,7 @@ class ImageProfiles extends React.Component<Props, State> {
href="/rhn/manager/cm/imageprofiles/create"
/>
)}
<AsyncButton id="reload" icon="fa-refresh" text={t("Refresh")} action={this.reloadData} />
</div>
);

Expand Down
2 changes: 1 addition & 1 deletion web/html/src/manager/images/image-stores.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,6 @@ class ImageStores extends React.Component<Props, State> {
target="delete-selected-modal"
/>
)}
<AsyncButton id="reload" icon="fa-refresh" text={t("Refresh")} action={this.reloadData} />
{window.isAdmin && (
<LinkButton
id="create"
Expand All @@ -149,6 +148,7 @@ class ImageStores extends React.Component<Props, State> {
href="/rhn/manager/cm/imagestores/create"
/>
)}
<AsyncButton id="reload" icon="fa-refresh" text={t("Refresh")} action={this.reloadData} />
</div>
);

Expand Down
3 changes: 3 additions & 0 deletions web/spacewalk-web.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
- Change the order of the Refresh and Create buttons on the
image-profiles and image-stores pages to stay consistent
with the image-list page.
- Fix layout alignment on pages showing failed states logs (bsc#1211713)
- Fix parsing error when showing notification message details (bsc#1211469)
- Fix spelling on monitoring-admin page.
Expand Down