1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-06-05 21:59:22 +02:00

fix: replace 'this.addNotification' with 'addNotification' in useResultTables.ts

This commit is contained in:
2025-02-06 13:25:57 +01:00
parent 7595e89223
commit 580bef76ba

View File

@@ -56,10 +56,10 @@ export function useResultTables (uid: string, reloadTable: () => void) {
if (status === 'success')
reloadTable();
else
this.addNotification({ status: 'error', message: response });
addNotification({ status: 'error', message: response });
}
catch (err) {
this.addNotification({ status: 'error', message: err.stack });
addNotification({ status: 'error', message: err.stack });
isQuering.value = false;
}
}