diff options
Diffstat (limited to 'apps/files/src/services/Navigation.ts')
-rw-r--r-- | apps/files/src/services/Navigation.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/src/services/Navigation.ts b/apps/files/src/services/Navigation.ts index adcc391b920..40881b0e73c 100644 --- a/apps/files/src/services/Navigation.ts +++ b/apps/files/src/services/Navigation.ts @@ -35,8 +35,8 @@ export interface Column { id: string /** Translated column title */ title: string - /** The content of the cell to render */ - render: (mount: HTMLTableCellElement, node: Node) => void + /** The content of the cell. The element will be appended within */ + render: (node: Node) => HTMLElement /** Function used to sort Nodes between them */ sort?: (nodeA: Node, nodeB: Node) => number /** Custom summary of the column to display at the end of the list. |