mirror of
https://github.com/usememos/memos.git
synced 2025-02-22 14:17:48 +01:00
fix: clear shortcut filter when delete this shortcut (#611)
This commit is contained in:
parent
3472a6db26
commit
f982e83d0a
@ -76,6 +76,10 @@ const ShortcutContainer: React.FC<ShortcutContainerProps> = (props: ShortcutCont
|
||||
if (showConfirmDeleteBtn) {
|
||||
try {
|
||||
await shortcutService.deleteShortcutById(shortcut.id);
|
||||
if (locationService.getState().query?.shortcutId === shortcut.id) {
|
||||
// need clear shortcut filter
|
||||
locationService.setMemoShortcut(undefined);
|
||||
}
|
||||
} catch (error: any) {
|
||||
console.error(error);
|
||||
toastHelper.error(error.response.data.message);
|
||||
|
Loading…
x
Reference in New Issue
Block a user