mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2025-10-04 21:34:31 +02:00
Fix pageload block due to missing nullsafe
This commit is contained in:
@@ -67,7 +67,7 @@
|
||||
);
|
||||
|
||||
let isHistogramSelectionOpen = false
|
||||
$: metricsInHistograms = cluster ? ccconfig[`user_view_histogramMetrics:${cluster}`] : (ccconfig.user_view_histogramMetrics || [])
|
||||
$: metricsInHistograms = cluster ? (ccconfig[`user_view_histogramMetrics:${cluster}`] || []) : (ccconfig.user_view_histogramMetrics || [])
|
||||
|
||||
const client = getContextClient();
|
||||
$: mainQuery = queryStore({
|
||||
|
Reference in New Issue
Block a user