Skip to content

Commit

Permalink
Merge pull request #133 from uphy/feature/drag-reminder2
Browse files Browse the repository at this point in the history
Reminder DnD - change format
  • Loading branch information
uphy authored Dec 2, 2022
2 parents 31bf6cb + 87df330 commit 06c410d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ui/reminder-list.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { ReadOnlyReference } from "model/ref";
import type { Time } from "model/time";
import { ItemView, View, Workspace, WorkspaceLeaf } from "obsidian";
import { ItemView, TFile, View, Workspace, WorkspaceLeaf } from "obsidian";
import { VIEW_TYPE_REMINDER_LIST } from "../constants";
import { groupReminders, Reminder, Reminders } from "../model/reminder";
import ReminderListView from "./components/ReminderList.svelte";
Expand Down Expand Up @@ -46,7 +46,7 @@ class ReminderListItemView extends ItemView {
} else {
linkMd = this.app.fileManager.generateMarkdownLink(aFile, destinationFile.path);
}
return `${linkMd} - ${reminder.title}`;
return `${reminder.title} - ${linkMd}`;
},
},
});
Expand Down

0 comments on commit 06c410d

Please sign in to comment.