mirror of
				https://github.com/ClusterCockpit/cc-backend
				synced 2025-11-04 01:25:06 +01:00 
			
		
		
		
	Merge pull request #288 from ClusterCockpit/hotfix
fix: fix crashing job view if roofline metrics missing
This commit is contained in:
		@@ -280,12 +280,12 @@
 | 
			
		||||
          .find((c) => c.name == $initq.data.job.cluster)
 | 
			
		||||
          .subClusters.find((sc) => sc.name == $initq.data.job.subCluster)}
 | 
			
		||||
        data={transformDataForRoofline(
 | 
			
		||||
          $jobMetrics.data.jobMetrics.find(
 | 
			
		||||
          $jobMetrics.data?.jobMetrics?.find(
 | 
			
		||||
            (m) => m.name == "flops_any" && m.scope == "node",
 | 
			
		||||
          ).metric,
 | 
			
		||||
          $jobMetrics.data.jobMetrics.find(
 | 
			
		||||
          )?.metric,
 | 
			
		||||
          $jobMetrics.data?.jobMetrics?.find(
 | 
			
		||||
            (m) => m.name == "mem_bw" && m.scope == "node",
 | 
			
		||||
          ).metric,
 | 
			
		||||
          )?.metric,
 | 
			
		||||
        )}
 | 
			
		||||
      />
 | 
			
		||||
    </Col>
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user