mirror of
https://github.com/zadam/trilium.git
synced 2025-11-07 13:56:11 +01:00
fixed some incorrect order by behavior, #1881
This commit is contained in:
11
src/services/search/expressions/true.js
Normal file
11
src/services/search/expressions/true.js
Normal file
@@ -0,0 +1,11 @@
|
||||
"use strict";
|
||||
|
||||
const Expression = require('./expression');
|
||||
|
||||
class TrueExp extends Expression {
|
||||
execute(inputNoteSet, executionContext) {
|
||||
return inputNoteSet;
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = TrueExp;
|
||||
Reference in New Issue
Block a user