mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 03:12:15 +00:00
chore(core): Rename Data Store module to Data Table (no-changelog) (#18675)
This commit is contained in:
@@ -25,4 +25,4 @@ export const MIN_LOADING_TIME = 500; // ms
|
||||
export const NULL_VALUE = 'Null';
|
||||
export const EMPTY_VALUE = 'Empty';
|
||||
|
||||
export const DATA_STORE_MODULE_NAME = 'data-store';
|
||||
export const DATA_STORE_MODULE_NAME = 'data-table';
|
||||
|
||||
@@ -15,7 +15,7 @@ const DataStoreDetailsView = async () =>
|
||||
await import('@/features/dataStore/DataStoreDetailsView.vue');
|
||||
|
||||
export const DataStoreModule: FrontendModuleDescription = {
|
||||
id: 'data-store',
|
||||
id: 'data-table',
|
||||
name: 'Data Store',
|
||||
description: 'Manage and store data efficiently with the Data Store module.',
|
||||
icon: 'database',
|
||||
|
||||
@@ -250,11 +250,11 @@ export const useUIStore = defineStore(STORES.UI, () => {
|
||||
* Module name is also added to the key so that we can check if the module is active
|
||||
* when tabs are rendered.\
|
||||
* @example
|
||||
* uiStore.registerCustomTabs('overview', 'data-store', [
|
||||
* uiStore.registerCustomTabs('overview', 'data-table', [
|
||||
* {
|
||||
* label: 'Data Store',
|
||||
* value: 'data-store',
|
||||
* to: { name: 'data-store' },
|
||||
* label: 'Data Table',
|
||||
* value: 'data-table',
|
||||
* to: { name: 'data-table' },
|
||||
* },
|
||||
* ]);
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user