mirror of
https://github.com/zadam/trilium.git
synced 2025-11-02 03:16:11 +01:00
attachments WIP
This commit is contained in:
@@ -120,7 +120,7 @@ export default class DeleteNotesDialog extends BasicWidget {
|
||||
for (const note of await froca.getNotes(response.noteIdsToBeDeleted)) {
|
||||
this.$deleteNotesList.append(
|
||||
$("<li>").append(
|
||||
await linkService.createNoteLink(note.noteId, {showNotePath: true})
|
||||
await linkService.createLink(note.noteId, {showNotePath: true})
|
||||
)
|
||||
);
|
||||
}
|
||||
@@ -136,9 +136,9 @@ export default class DeleteNotesDialog extends BasicWidget {
|
||||
this.$brokenRelationsList.append(
|
||||
$("<li>")
|
||||
.append(`Note `)
|
||||
.append(await linkService.createNoteLink(attr.value))
|
||||
.append(await linkService.createLink(attr.value))
|
||||
.append(` (to be deleted) is referenced by relation <code>${attr.name}</code> originating from `)
|
||||
.append(await linkService.createNoteLink(attr.noteId))
|
||||
.append(await linkService.createLink(attr.noteId))
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user