Skip to content
Snippets Groups Projects
Commit cb16a2ed authored by Kirill Stytsenko's avatar Kirill Stytsenko
Browse files

Disable column sorting

// sorting is disabled for now
// backed has sorting functionality in 93c2a6c0 [formerly 8cf84d4d],
// branch 53-task-provide-property-information-for-metadata-db-frontend
// currenlty unmergable to dev


Former-commit-id: e48a31a8
parent b0b8121f
No related branches found
No related tags found
No related merge requests found
......@@ -141,8 +141,14 @@ export default {
console.debug('headers', res.data.columns)
this.headers = res.data.columns.map((c) => {
return {
value: c.internal_name,
text: this.columnAddition(c) + c.name
value: c.name,
text: this.columnAddition(c) + c.name,
// sorting is disabled for now
// backed has sorting functionality in 8cf84d4d3502202c5947eefb49bc6f48cebff234,
// branch 53-task-provide-property-information-for-metadata-db-frontend
// currenlty unmergable to dev
sortable: false
}
})
} catch (err) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment