fix: API ObjectMetadata labelSingular and labelPlural which eventually solves typo in dropdown (#7614)
## ISSUE - Closes #7478 ## Description - Fixes typo in dropdown + in general any apikeys label around.
This commit is contained in:
@ -1868,9 +1868,9 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery =
|
|||||||
"dataSourceId": "d8a38ce6-6ac9-4c10-b55f-408386f86290",
|
"dataSourceId": "d8a38ce6-6ac9-4c10-b55f-408386f86290",
|
||||||
"nameSingular": "apiKey",
|
"nameSingular": "apiKey",
|
||||||
"namePlural": "apiKeys",
|
"namePlural": "apiKeys",
|
||||||
"labelSingular": "Api Key",
|
"labelSingular": "API Key",
|
||||||
"labelPlural": "Api Keys",
|
"labelPlural": "API Keys",
|
||||||
"description": "An api key",
|
"description": "An API key",
|
||||||
"icon": "IconRobot",
|
"icon": "IconRobot",
|
||||||
"isCustom": false,
|
"isCustom": false,
|
||||||
"isRemote": false,
|
"isRemote": false,
|
||||||
|
|||||||
@ -11,9 +11,9 @@ import { STANDARD_OBJECT_IDS } from 'src/engine/workspace-manager/workspace-sync
|
|||||||
@WorkspaceEntity({
|
@WorkspaceEntity({
|
||||||
standardId: STANDARD_OBJECT_IDS.apiKey,
|
standardId: STANDARD_OBJECT_IDS.apiKey,
|
||||||
namePlural: 'apiKeys',
|
namePlural: 'apiKeys',
|
||||||
labelSingular: 'Api Key',
|
labelSingular: 'API Key',
|
||||||
labelPlural: 'Api Keys',
|
labelPlural: 'API Keys',
|
||||||
description: 'An api key',
|
description: 'An API key',
|
||||||
icon: 'IconRobot',
|
icon: 'IconRobot',
|
||||||
labelIdentifierStandardId: API_KEY_STANDARD_FIELD_IDS.name,
|
labelIdentifierStandardId: API_KEY_STANDARD_FIELD_IDS.name,
|
||||||
})
|
})
|
||||||
|
|||||||
Reference in New Issue
Block a user