Fix Plottable removed metrics filter

- excluded all plots where bool was not explicitly set
This commit is contained in:
Christoph Kluge 2023-06-19 09:51:50 +02:00
parent 4c708dba3f
commit c5834e69d3

View File

@ -30,7 +30,8 @@
return rows return rows
} }
$: rows = tile(items.filter(item => item.disabled === false), itemsPerRow) // Analysis Implements PlotTable: Disable flag can not be present, add to row if not defined explicitly (Helps with systems view also)
$: rows = tile(items.filter(item => (item.disabled !== null && item.disabled === false)), itemsPerRow)
$: plotWidth = (tableWidth / itemsPerRow) - (padding * itemsPerRow) $: plotWidth = (tableWidth / itemsPerRow) - (padding * itemsPerRow)
</script> </script>