Filter against relative path rather than full path

This commit is contained in:
Christian Rocha 2020-11-12 15:22:03 -05:00 committed by Christian Rocha
parent 8277cbb71f
commit d09b225087

View file

@ -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)