mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-24 17:31:52 +00:00
default to none string value
This commit is contained in:
@@ -131,7 +131,11 @@ export class DataTable extends Component {
|
||||
return 'asc';
|
||||
}
|
||||
|
||||
return 'desc';
|
||||
if (str.includes('desc')) {
|
||||
return 'desc';
|
||||
}
|
||||
|
||||
return 'none';
|
||||
}
|
||||
|
||||
async sortByColumn(columnName: string) {
|
||||
|
Reference in New Issue
Block a user