|
|
@@ -25,6 +25,7 @@ const ClusterList: React.FC<Props> = ({}) => {
|
|
|
{ id: currentProject.id },
|
|
|
)
|
|
|
.then(({ data }) => {
|
|
|
+ console.log(data);
|
|
|
setClusters(data);
|
|
|
setIsLoading(false);
|
|
|
})
|
|
|
@@ -116,7 +117,9 @@ const ClusterList: React.FC<Props> = ({}) => {
|
|
|
{renderIcon()}
|
|
|
{cluster.name}
|
|
|
{
|
|
|
- cluster.status === "UPDATING" && (
|
|
|
+ (
|
|
|
+ cluster.status === "UPDATING" || cluster.status === "UPDATING_UNAVAILABLE"
|
|
|
+ ) && (
|
|
|
<Status
|
|
|
onClick={(e) => {
|
|
|
e.stopPropagation();
|