fix(editor): Standardize capitalization of "Data table" across various files (no-changelog) (#19111)

This commit is contained in:
Svetoslav Dekov
2025-09-03 14:43:24 +03:00
committed by GitHub
parent 69e6498d24
commit 6bd4edf1ec
9 changed files with 18 additions and 17 deletions

View File

@@ -36,7 +36,7 @@ export class DataStoreProxyService implements DataStoreProxyProvider {
private validateRequest(node: INode) {
if (node.type !== 'n8n-nodes-base.dataTable' && node.type !== 'n8n-nodes-base.dataTableTool') {
throw new Error('This proxy is only available for data table nodes');
throw new Error('This proxy is only available for Data table nodes');
}
}

View File

@@ -5,7 +5,7 @@ import { Container } from '@n8n/di';
const YELLOW = '\x1b[33m';
const CLEAR = '\x1b[0m';
const DATA_TABLE_WARNING_MESSAGE = `[Data Table] The data table module is experimental and subject to change.
const DATA_TABLE_WARNING_MESSAGE = `[Data table] The Data table module is experimental and subject to change.
Any tables added before the official release may become inaccessible at any point. Use at your own risk.`;
@BackendModule({ name: 'data-table' })