(col: Pick<ColumnDefinition, 'id' | 'name'>)
| 24 | * which is exactly the key the column still uses, so the fallback is correct. |
| 25 | */ |
| 26 | export function getColumnId(col: Pick<ColumnDefinition, 'id' | 'name'>): string { |
| 27 | return col.id ?? col.name |
| 28 | } |
| 29 | |
| 30 | /** |
| 31 | * Mints a fresh column id. Generated ids are opaque (`col_<uuid>`) and |
no outgoing calls
no test coverage detected