server: Fix missing .js import for rows file

This commit is contained in:
Elian Doran
2024-07-24 20:19:27 +03:00
parent f382d3c728
commit 76fcea7189
35 changed files with 35 additions and 35 deletions

View File

@@ -23,7 +23,7 @@ import noteTypesService from "./note_types.js";
import fs from "fs";
import ws from "./ws.js";
import html2plaintext from "html2plaintext";
import { AttachmentRow, AttributeRow, BranchRow, NoteRow, NoteType } from '../becca/entities/rows';
import { AttachmentRow, AttributeRow, BranchRow, NoteRow, NoteType } from '../becca/entities/rows.js';
import TaskContext from "./task_context.js";
import { NoteParams } from './note-interface';
import imageService from "./image.js";