소스 검색

fixed tailscale addon image tag casing

jusrhee 4 년 전
부모
커밋
8b0faaa273
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      dashboard/src/main/home/cluster-dashboard/expanded-chart/ExpandedChart.tsx

+ 1 - 1
dashboard/src/main/home/cluster-dashboard/expanded-chart/ExpandedChart.tsx

@@ -103,7 +103,7 @@ export default class ExpandedChart extends Component<PropsType, StateType> {
       )
       )
       .then((res) => {
       .then((res) => {
         let image = res.data?.config?.image?.repository;
         let image = res.data?.config?.image?.repository;
-        let tag = res.data?.config?.image?.tag.toString();
+        let tag = res.data?.config?.image?.tag?.toString();
         let newestImage = tag ? image + ":" + tag : image;
         let newestImage = tag ? image + ":" + tag : image;
         let imageIsPlaceholder = false;
         let imageIsPlaceholder = false;
         if (
         if (