mirror of
https://github.com/zadam/trilium.git
synced 2025-11-08 22:35:50 +01:00
server: Fix missing .js import for rows file
This commit is contained in:
@@ -5,7 +5,7 @@ import utils from "../../../services/utils.js";
|
||||
import AbstractShacaEntity from "./abstract_shaca_entity.js";
|
||||
import SNote from "./snote.js";
|
||||
import { Blob } from '../../../services/blob-interface';
|
||||
import { SAttachmentRow } from './rows';
|
||||
import { SAttachmentRow } from './rows.js';
|
||||
|
||||
class SAttachment extends AbstractShacaEntity {
|
||||
private attachmentId: string;
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
"use strict";
|
||||
|
||||
import AbstractShacaEntity from "./abstract_shaca_entity";
|
||||
import { SAttributeRow } from "./rows";
|
||||
import { SAttributeRow } from "./rows.js";
|
||||
import SNote from "./snote.js";
|
||||
|
||||
class SAttribute extends AbstractShacaEntity {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
"use strict";
|
||||
|
||||
import AbstractShacaEntity from "./abstract_shaca_entity.js";
|
||||
import { SBranchRow } from './rows';
|
||||
import { SBranchRow } from './rows.js';
|
||||
import SNote from "./snote.js";
|
||||
|
||||
class SBranch extends AbstractShacaEntity {
|
||||
|
||||
@@ -8,7 +8,7 @@ import { Blob } from '../../../services/blob-interface';
|
||||
import SAttachment from "./sattachment.js";
|
||||
import SAttribute from "./sattribute.js";
|
||||
import SBranch from "./sbranch.js";
|
||||
import { SNoteRow } from './rows';
|
||||
import { SNoteRow } from './rows.js';
|
||||
|
||||
const LABEL = 'label';
|
||||
const RELATION = 'relation';
|
||||
|
||||
@@ -9,7 +9,7 @@ import SAttribute from "./entities/sattribute.js";
|
||||
import SAttachment from "./entities/sattachment.js";
|
||||
import shareRoot from "../share_root.js";
|
||||
import eventService from "../../services/events.js";
|
||||
import { SAttachmentRow, SAttributeRow, SBranchRow, SNoteRow } from './entities/rows';
|
||||
import { SAttachmentRow, SAttributeRow, SBranchRow, SNoteRow } from './entities/rows.js';
|
||||
|
||||
function load() {
|
||||
const start = Date.now();
|
||||
|
||||
Reference in New Issue
Block a user