fix: clear shortcut filter when delete this shortcut (#611)

This commit is contained in:
Wujiao233
2022-11-28 06:14:25 +08:00
committed by GitHub
parent 3472a6db26
commit f982e83d0a

View File

@ -76,6 +76,10 @@ const ShortcutContainer: React.FC<ShortcutContainerProps> = (props: ShortcutCont
if (showConfirmDeleteBtn) { if (showConfirmDeleteBtn) {
try { try {
await shortcutService.deleteShortcutById(shortcut.id); await shortcutService.deleteShortcutById(shortcut.id);
if (locationService.getState().query?.shortcutId === shortcut.id) {
// need clear shortcut filter
locationService.setMemoShortcut(undefined);
}
} catch (error: any) { } catch (error: any) {
console.error(error); console.error(error);
toastHelper.error(error.response.data.message); toastHelper.error(error.response.data.message);