Просмотр исходного кода

Fix for input-sliders to check only for applications (#3361)

Co-authored-by: Feroze Mohideen <feroze@porter.run>
sdess09 2 лет назад
Родитель
Сommit
4e8f5af4e6

+ 1 - 1
dashboard/src/main/home/app-dashboard/new-app-flow/ServiceContainer.tsx

@@ -81,7 +81,7 @@ const ServiceContainer: React.FC<ServiceProps> = ({
             };
 
             data.forEach(node => {
-              if (node.labels['porter.run/workload-kind']) {
+              if (node.labels['porter.run/workload-kind'] == "application") {
                 var instanceType: string = node.labels['beta.kubernetes.io/instance-type'];
                 const [instanceClass, instanceSize] = instanceType.split('.');
                 if (instanceClass && instanceSize) {