chore(core): Rename Data Store module to Data Table (no-changelog) (#18675)

This commit is contained in:
Charlie Kolb
2025-08-25 14:57:23 +02:00
committed by GitHub
parent 1f1730c27d
commit 2dc34b2f17
36 changed files with 37 additions and 36 deletions

View File

@@ -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';

View File

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

View File

@@ -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' },
* },
* ]);
*/