We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4837f6 commit 1c5e276Copy full SHA for 1c5e276
1 file changed
pkg/harvester-manager/models/harvesterhci.io.management.cluster.js
@@ -26,21 +26,6 @@ export default class HciCluster extends ProvCluster {
26
}
27
28
29
- get isReady() {
30
- const conditions = this.mgmt?.status?.conditions || [];
31
- const connected = conditions.find((c) => c.type === 'Connected');
32
-
33
- // If the Connected condition exists, use that (2.6+)
34
- if (connected) {
35
- return connected.status === 'True';
36
- }
37
38
- // Otherwise use Ready (older)
39
- const ready = conditions.find((c) => c.type === 'Ready');
40
41
- return ready?.status === 'True';
42
43
44
get canEdit() {
45
return this.canUpdate && this.canCustomEdit;
46
0 commit comments