{{ library.LIBRARYNAME }}
@if (library['tables']) {
@if (searchTreeInput.value.length < 1) {
}
@if (searchTreeInput.value.length > 0) {
}
}
@for (
libTable of library['tables'];
track libTable;
let index = $index
) {
licenceState.value.tables_in_library_limit as tableLocked
"
>
@if (tableLocked) {
To unlock all tables, contact support@datacontroller.io
}
@if (hasColumns) {
@if (libTable['columns']) {
@if (searchTreeInput.value.length < 1) {
}
@if (searchTreeInput.value.length > 0) {
}
}
@for (libColumn of libTable['columns']; track libColumn) {
}
}
}
}
}