You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-06-18 23:07:45 +02:00
* Allow custom sorting * Implement UI * Set order from message box * Fixed mistake * Update NoteListItem.tsx * Desktop: Fixed date popup dialog overflow issue inside info dialog
This commit is contained in:
@ -182,7 +182,7 @@ class BaseModel {
|
||||
const items = [];
|
||||
for (let i = 0; i < options.order.length; i++) {
|
||||
const o = options.order[i];
|
||||
let item = o.by;
|
||||
let item = `\`${o.by}\``;
|
||||
if (options.caseInsensitive === true) item += ' COLLATE NOCASE';
|
||||
if (o.dir) item += ` ${o.dir}`;
|
||||
items.push(item);
|
||||
|
Reference in New Issue
Block a user