From d09b225087f9aa9cac55c8383291db3c8e9a6385 Mon Sep 17 00:00:00 2001 From: Christian Rocha Date: Thu, 12 Nov 2020 15:22:03 -0500 Subject: [PATCH] Filter against relative path rather than full path --- ui/stash.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/stash.go b/ui/stash.go index fd305b6..11c1c04 100644 --- a/ui/stash.go +++ b/ui/stash.go @@ -237,7 +237,7 @@ func (m *stashModel) getNotes() []*markdown { case stashedMarkdown: note = t.Note default: - note = t.localPath + note = t.displayPath } targets = append(targets, note)