mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-19 11:01:15 +00:00
fix(core): Refer to data table in error message (no-changelog) (#18971)
This commit is contained in:
@@ -2,7 +2,7 @@ import { UserError } from 'n8n-workflow';
|
|||||||
|
|
||||||
export class DataStoreNotFoundError extends UserError {
|
export class DataStoreNotFoundError extends UserError {
|
||||||
constructor(dataStoreId: string) {
|
constructor(dataStoreId: string) {
|
||||||
super(`Could not find the data store: '${dataStoreId}'`, {
|
super(`Could not find the data table: '${dataStoreId}'`, {
|
||||||
level: 'warning',
|
level: 'warning',
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user