feat(editor): Remove beta labels from Data table feature (#21322)

This commit is contained in:
Charlie Kolb 2025-10-29 15:28:08 +01:00 committed by GitHub
parent 409462b09d
commit 8f5bc139d8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 0 additions and 8 deletions

View File

@ -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,

View File

@ -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;
});

View File

@ -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: [