mirror of
https://github.com/portainer/portainer.git
synced 2025-07-24 15:59:41 +02:00
fix(ui): fix docker images page error on pageheader EE-3668 (#7212)
* fix docker images page error with link on page-header
This commit is contained in:
parent
52ac54f15c
commit
aa830a0e58
4 changed files with 21 additions and 5 deletions
|
@ -41,7 +41,11 @@ function renderCrumb(crumb: Crumb | string) {
|
|||
|
||||
if (crumb.link) {
|
||||
return (
|
||||
<Link to={crumb.link} params={crumb.linkParams}>
|
||||
<Link
|
||||
to={crumb.link}
|
||||
params={crumb.linkParams}
|
||||
className="text-blue-9 hover:underline"
|
||||
>
|
||||
{crumb.label}
|
||||
</Link>
|
||||
);
|
||||
|
|
|
@ -39,13 +39,13 @@ export function PageHeader({
|
|||
<HeaderTitle title={title}>
|
||||
{reload && (
|
||||
<Button
|
||||
color="link"
|
||||
size="medium"
|
||||
color="none"
|
||||
size="large"
|
||||
onClick={onClickedRefresh}
|
||||
className={styles.reloadButton}
|
||||
disabled={loading}
|
||||
>
|
||||
<RefreshCw className="feather icon-sm" />
|
||||
<RefreshCw className="icon" />
|
||||
</Button>
|
||||
)}
|
||||
</HeaderTitle>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue