We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f89ffd commit 61671faCopy full SHA for 61671fa
src/lib/recents.js
@@ -86,7 +86,6 @@ const recents = {
86
return name;
87
};
88
89
-
90
if (type === "dir" || type === "all") {
91
let dirs = this.folders;
92
for (let dir of dirs) {
@@ -112,7 +111,7 @@ const recents = {
112
111
ontailclick: (e) => {
113
const $item = e.currentTarget.closest(".tile");
114
if ($item) $item.remove();
115
- self.removeFolder(dir.url);
+ this.removeFolder(dir.url);
116
},
117
});
118
}
@@ -143,7 +142,7 @@ const recents = {
143
142
144
145
146
- self.removeFile(file);
+ this.removeFile(file);
147
148
149
0 commit comments