mirror of
https://github.com/zadam/trilium.git
synced 2025-11-13 08:45:50 +01:00
server-ts: Fix references to js files for converted files
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import clsHooked = require('cls-hooked');
|
||||
import type entity_changes = require('./entity_changes');
|
||||
import { EntityChange } from './entity_changes_interface';
|
||||
const namespace = clsHooked.createNamespace("trilium");
|
||||
|
||||
type Callback = (...args: any[]) => any;
|
||||
@@ -75,7 +75,7 @@ function getAndClearEntityChangeIds() {
|
||||
return entityChangeIds;
|
||||
}
|
||||
|
||||
function putEntityChange(entityChange: entity_changes.EntityChange) {
|
||||
function putEntityChange(entityChange: EntityChange) {
|
||||
if (namespace.get('ignoreEntityChangeIds')) {
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user