mirror of
https://github.com/zadam/trilium.git
synced 2025-11-16 10:15:52 +01:00
always use template strings instead of string concatenation
This commit is contained in:
@@ -82,7 +82,7 @@ export default class BranchPrefixDialog extends BasicWidget {
|
||||
|
||||
const noteTitle = await treeService.getNoteTitle(noteId);
|
||||
|
||||
this.$noteTitle.text(" - " + noteTitle);
|
||||
this.$noteTitle.text(` - ${noteTitle}`);
|
||||
}
|
||||
|
||||
async editBranchPrefixEvent() {
|
||||
|
||||
Reference in New Issue
Block a user