1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-03-29 21:21:15 +02:00

Desktop: Sort attachments in a case insensitive way in Attachments screen (#4273)

Update to add case insensitive sorting - https://discourse.joplinapp.org/t/a-feature-request/13486/5?u=daeraxa
This commit is contained in:
Daeraxa 2021-01-02 15:27:53 +00:00 committed by GitHub
parent fdfbb84d37
commit ca5ac9696b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -153,6 +153,7 @@ class ResourceScreenComponent extends React.Component<Props, State> {
order: [{
by: getSortingOrderColumn(sorting.order),
dir: sorting.type,
caseInsensitive: true,
}],
limit: MAX_RESOURCES,
fields: ['title', 'id', 'size', 'file_extension'],