mirror of
https://github.com/n8n-io/n8n.git
synced 2026-05-29 15:57:00 +02:00
feat(editor): Remove beta labels from Data table feature (#21322)
This commit is contained in:
parent
409462b09d
commit
8f5bc139d8
|
|
@ -70,7 +70,6 @@ export const DataTableModule: FrontendModuleDescription = {
|
|||
{
|
||||
label: i18n.baseText('dataTable.dataTables'),
|
||||
value: DATA_TABLE_VIEW,
|
||||
tag: i18n.baseText('generic.betaProper'),
|
||||
to: {
|
||||
name: DATA_TABLE_VIEW,
|
||||
},
|
||||
|
|
@ -80,7 +79,6 @@ export const DataTableModule: FrontendModuleDescription = {
|
|||
{
|
||||
label: i18n.baseText('dataTable.dataTables'),
|
||||
value: PROJECT_DATA_TABLES,
|
||||
tag: i18n.baseText('generic.betaProper'),
|
||||
dynamicRoute: {
|
||||
name: PROJECT_DATA_TABLES,
|
||||
includeProjectId: true,
|
||||
|
|
|
|||
|
|
@ -135,9 +135,6 @@ const tag = computed(() => {
|
|||
if (description.value.toLowerCase().includes('deprecated')) {
|
||||
return { text: i18n.baseText('nodeCreator.nodeItem.deprecated'), type: 'info' };
|
||||
}
|
||||
if (props.nodeType.name.includes('dataTable')) {
|
||||
return { text: i18n.baseText('nodeCreator.nodeItem.beta'), type: 'info' };
|
||||
}
|
||||
return undefined;
|
||||
});
|
||||
|
||||
|
|
|
|||
|
|
@ -24,9 +24,6 @@ export class DataTable implements INodeType {
|
|||
name: 'Data table',
|
||||
},
|
||||
usableAsTool: true,
|
||||
// We have custom logic in the frontend to ignore `hidden` for this
|
||||
// particular node type if the data-table module is enabled
|
||||
hidden: true,
|
||||
inputs: [NodeConnectionTypes.Main],
|
||||
outputs: [NodeConnectionTypes.Main],
|
||||
hints: [
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user