_id is free
This commit is contained in:
@@ -112,7 +112,15 @@ pub(crate) async fn load_page(
|
||||
.map(|table| TableSummary {
|
||||
name: table.name.clone(),
|
||||
table_kind: table.table_kind.clone(),
|
||||
depends_on: table.depends_on.clone(),
|
||||
// One entry per link, named by the column carrying it, so a
|
||||
// table pointing at one target twice reads as two links.
|
||||
depends_on: table
|
||||
.depends_on
|
||||
.iter()
|
||||
.map(|dependency| {
|
||||
format!("{} ({})", dependency.table_name, dependency.column_name)
|
||||
})
|
||||
.collect(),
|
||||
row_display_columns: table.row_display_columns.clone(),
|
||||
})
|
||||
.collect::<Vec<_>>()
|
||||
|
||||
Reference in New Issue
Block a user