database content UX

This commit is contained in:
SPRINX0\prochazka
2025-05-26 12:58:20 +02:00
parent 366ab2e0cd
commit b3497c7306
6 changed files with 57 additions and 7 deletions

View File

@@ -29,7 +29,7 @@
const visibleItemsCount = defs.filter(x => !x.collapsed && !x.skip).length;
for (let index = 0; index < defs.length; index++) {
const definition = defs[index];
const splitterVisible = !!defs.slice(index + 1).find(x => x && !x.collapsed && !x.skip);
const splitterVisible = !!defs.slice(index + 1).find(x => x && !x.collapsed && !x.skip && x.positiveCondition);
dynamicPropsCollection[index].set({ splitterVisible, visibleItemsCount });
}
}