feat(editor): Add Beta tag to Data Tables (no-changelog) (#19458)

This commit is contained in:
Charlie Kolb
2025-09-15 09:52:29 +02:00
committed by GitHub
parent e4ccf527f2
commit c6e147550c
5 changed files with 11 additions and 0 deletions

View File

@@ -131,6 +131,9 @@ 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

@@ -70,6 +70,7 @@ export const DataStoreModule: FrontendModuleDescription = {
{
label: i18n.baseText('dataStore.dataStores'),
value: DATA_STORE_VIEW,
tag: i18n.baseText('generic.betaProper'),
to: {
name: DATA_STORE_VIEW,
},
@@ -79,6 +80,7 @@ export const DataStoreModule: FrontendModuleDescription = {
{
label: i18n.baseText('dataStore.dataStores'),
value: PROJECT_DATA_STORES,
tag: i18n.baseText('generic.betaProper'),
dynamicRoute: {
name: PROJECT_DATA_STORES,
includeProjectId: true,