Skip to content

Commit e2fa546

Browse files
authored
feat: fix bug in k8s status value (casibase#1447)
1 parent 7c7129d commit e2fa546

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web/src/ApplicationListPage.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ class ApplicationListPage extends BaseListPage {
5555
.then((res) => {
5656
if (res.status === "ok") {
5757
this.setState({
58-
k8sStatus: res.data.status,
58+
k8sStatus: res.data,
5959
});
6060
} else {
6161
Setting.showMessage("error", `${i18next.t("general:Failed to get")}: ${res.msg}`);

0 commit comments

Comments
 (0)