Skip to content
Open
Show file tree
Hide file tree
Changes from all 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
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@linode/manager": Upcoming Features
---

Upcoming: [M3-10780] - prepare for LKE Dashboard removal ([#13485](https://github.com/linode/manager/pull/13485))
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@
<ActionMenu
actionsList={[
{
disabled: Boolean(dashboardError) || !dashboard,
disabled: Boolean(dashboardError) || !dashboard || !dashboard.url,

Check warning on line 169 in packages/manager/src/features/Kubernetes/KubernetesClusterDetail/KubeSummaryPanel.tsx

View workflow job for this annotation

GitHub Actions / ESLint Review (manager)

[eslint] reported by reviewdog 🐶 Insert `⏎·······················` Raw Output: {"ruleId":"prettier/prettier","severity":1,"message":"Insert `⏎·······················`","line":169,"column":32,"nodeType":null,"messageId":"insert","endLine":169,"endColumn":32,"fix":{"range":[5658,5658],"text":"
onClick: () => window.open(dashboard?.url, '_blank'),
title: 'Kubernetes Dashboard',
},
Expand All @@ -183,7 +183,7 @@
cluster.tier === 'enterprise' ? undefined : (
<StyledActionButton
disabled={
Boolean(dashboardError) || !dashboard || isClusterReadOnly
Boolean(dashboardError) || !dashboard || !dashboard.url || isClusterReadOnly

Check warning on line 186 in packages/manager/src/features/Kubernetes/KubernetesClusterDetail/KubeSummaryPanel.tsx

View workflow job for this annotation

GitHub Actions / ESLint Review (manager)

[eslint] reported by reviewdog 🐶 Replace `·!dashboard·||·!dashboard.url·||` with `⏎······················!dashboard·||⏎······················!dashboard.url·||⏎·····················` Raw Output: {"ruleId":"prettier/prettier","severity":1,"message":"Replace `·!dashboard·||·!dashboard.url·||` with `⏎······················!dashboard·||⏎······················!dashboard.url·||⏎·····················`","line":186,"column":49,"nodeType":null,"messageId":"replace","endLine":186,"endColumn":81,"fix":{"range":[6435,6467],"text":"
}
endIcon={<ExternalLinkIcon sx={{ height: '14px' }} />}
onClick={() => window.open(dashboard?.url, '_blank')}
Expand Down
Loading