-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Introduce kludge to make "isEnabledForCluster" work again for kube object details PART 6 #5805
Introduce kludge to make "isEnabledForCluster" work again for kube object details PART 6 #5805
Conversation
.../kube-object-details/kube-object-detail-items/kube-object-matches-to-kind-and-api-version.ts
Outdated
Show resolved
Hide resolved
...be-object-detail-items/implementations/custom-resource-definitions-detail-item.injectable.ts
Show resolved
Hide resolved
...object-details/kube-object-detail-items/implementations/kube-event-detail-item.injectable.ts
Outdated
Show resolved
Hide resolved
import type React from "react"; | ||
|
||
export interface KubeObjectDetailItem { | ||
Component: React.ElementType<KubeObjectDetailsProps<any>>; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same comment as from a previous PR about KubeObject
7a2ab23
to
d2eb445
Compare
This pull request has conflicts, please resolve those before we can evaluate the pull request. |
8e9d5cb
to
c071fb1
Compare
Conflicts have been resolved. A maintainer will review the pull request shortly. |
d2eb445
to
b747cce
Compare
This pull request has conflicts, please resolve those before we can evaluate the pull request. |
c071fb1
to
591f8ed
Compare
Conflicts have been resolved. A maintainer will review the pull request shortly. |
591f8ed
to
9a90c19
Compare
b747cce
to
e745ab0
Compare
This pull request has conflicts, please resolve those before we can evaluate the pull request. |
9a90c19
to
944c4be
Compare
Conflicts have been resolved. A maintainer will review the pull request shortly. |
e745ab0
to
e458ded
Compare
This pull request has conflicts, please resolve those before we can evaluate the pull request. |
944c4be
to
98560a3
Compare
Conflicts have been resolved. A maintainer will review the pull request shortly. |
e458ded
to
3011d92
Compare
This pull request has conflicts, please resolve those before we can evaluate the pull request. |
98560a3
to
830d183
Compare
Conflicts have been resolved. A maintainer will review the pull request shortly. |
Signed-off-by: Janne Savolainen <janne.savolainen@live.fi>
830d183
to
78a6e8d
Compare
…d overview details PART 5 (#5804) * Kludge "isEnabledForCluster" work again for cluster page menus (sidebar items) Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Kludge "isEnabledForCluster" work again for kube object status texts Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Kludge "isEnabledForCluster" work again for kube object menu items Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Kludge "isEnabledForCluster" work again for workload overview details Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Kludge "isEnabledForCluster" work again for kube object details (#5805) Signed-off-by: Janne Savolainen <janne.savolainen@live.fi>
… pages PART 1 (#5800) * Kludge "isEnabledForCluster" work again for cluster pages Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Introduce kludge to make "isEnabledForCluster" work again for cluster page menus PART 2 (#5801) * Kludge "isEnabledForCluster" work again for cluster page menus (sidebar items) Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Introduce kludge to make "isEnabledForCluster" work again for kube object status texts PART 3 (#5802) * Kludge "isEnabledForCluster" work again for kube object status texts Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Kludge "isEnabledForCluster" work again for kube object menu items (#5803) Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Introduce kludge to make "isEnabledForCluster" work again for workload overview details PART 5 (#5804) * Kludge "isEnabledForCluster" work again for cluster page menus (sidebar items) Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Kludge "isEnabledForCluster" work again for kube object status texts Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Kludge "isEnabledForCluster" work again for kube object menu items Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Kludge "isEnabledForCluster" work again for workload overview details Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Kludge "isEnabledForCluster" work again for kube object details (#5805) Signed-off-by: Janne Savolainen <janne.savolainen@live.fi>
Part 6 of #5800
In this PR, we replace
KubeObjectDetailsRegistry
with new alternative which works properly withisEnabledForCluster
.Signed-off-by: Janne Savolainen janne.savolainen@live.fi
Closes #4632