@tekkare/romulus 0.1.181 → 0.1.182
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/module.json
CHANGED
|
@@ -592,8 +592,7 @@ export function useRmExport() {
|
|
|
592
592
|
const snapshots = (payload.nodes ?? []).filter((node) => {
|
|
593
593
|
if (node.kind === "chart") return false;
|
|
594
594
|
if (node.kind === "kpi") return config.sections.includes("kpi");
|
|
595
|
-
|
|
596
|
-
return config.sections.includes("cards");
|
|
595
|
+
return config.sections.includes("table") || config.sections.includes("cards");
|
|
597
596
|
});
|
|
598
597
|
const shots = [];
|
|
599
598
|
for (const node of snapshots) {
|