mirror of
https://github.com/zadam/trilium.git
synced 2025-11-09 13:21:33 +08:00
server-ts: Fix build errors after merge
This commit is contained in:
parent
090d353fd0
commit
a420129631
2 changed files with 2 additions and 2 deletions
|
|
@ -20,7 +20,7 @@ const beccaLoaded = new Promise<void>((res, rej) => {
|
|||
cls.init(() => {
|
||||
load();
|
||||
|
||||
require('../services/options_init.js').initStartupOptions();
|
||||
require('../services/options_init').initStartupOptions();
|
||||
|
||||
res();
|
||||
});
|
||||
|
|
|
|||
|
|
@ -137,7 +137,7 @@ class NoteContentFulltextExp extends Expression {
|
|||
return content.trim();
|
||||
}
|
||||
|
||||
stripTags(content) {
|
||||
stripTags(content: string) {
|
||||
// we want to allow link to preserve URLs: https://github.com/zadam/trilium/issues/2412
|
||||
// we want to insert space in place of block tags (because they imply text separation)
|
||||
// but we don't want to insert text for typical formatting inline tags which can occur within one word
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue