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

Disable column sorting

// sorting is disabled for now
// backed has sorting functionality in 8cf84d4d,
// branch 53-task-provide-property-information-for-metadata-db-frontend
// currenlty unmergable to dev
parent a1859ae5
No related branches found
No related tags found
3 merge requests!81New stable release,!43Merge dev to master,!41UI March
...@@ -141,8 +141,14 @@ export default { ...@@ -141,8 +141,14 @@ export default {
console.debug('headers', res.data.columns) console.debug('headers', res.data.columns)
this.headers = res.data.columns.map((c) => { this.headers = res.data.columns.map((c) => {
return { return {
value: c.internal_name, value: c.name,
text: this.columnAddition(c) + 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) { } catch (err) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment