We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86af4e9 commit 8bc096cCopy full SHA for 8bc096c
2 files changed
frontend/src/ts/collections/tags.ts
@@ -285,7 +285,7 @@ export async function setTagActive(
285
}
286
287
export async function clearActiveTags(
288
- params: ActionType["clearActiveTags"],
+ params: ActionType["clearActiveTags"] = {},
289
): Promise<void> {
290
const transaction = actions.clearActiveTags(params);
291
await transaction.isPersisted.promise;
frontend/src/ts/commandline/lists/tags.ts
@@ -41,7 +41,7 @@ function update(): void {
41
icon: "fa-times",
42
sticky: true,
43
exec: async (): Promise<void> => {
44
- await clearActiveTags({});
+ await clearActiveTags();
45
if (
46
Config.paceCaret === "average" ||
47
Config.paceCaret === "tagPb" ||
0 commit comments