Skip to content

Commit

Permalink
fix: API ObjectMetadata labelSingular and labelPlural which eventuall…
Browse files Browse the repository at this point in the history
…y solves typo in dropdown (#7614)

## ISSUE 

- Closes #7478 

## Description 

- Fixes typo in dropdown + in general any apikeys label around.
  • Loading branch information
Nabhag8848 authored Oct 13, 2024
1 parent da7a394 commit 508252b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1868,9 +1868,9 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery =
"dataSourceId": "d8a38ce6-6ac9-4c10-b55f-408386f86290",
"nameSingular": "apiKey",
"namePlural": "apiKeys",
"labelSingular": "Api Key",
"labelPlural": "Api Keys",
"description": "An api key",
"labelSingular": "API Key",
"labelPlural": "API Keys",
"description": "An API key",
"icon": "IconRobot",
"isCustom": false,
"isRemote": false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ import { STANDARD_OBJECT_IDS } from 'src/engine/workspace-manager/workspace-sync
@WorkspaceEntity({
standardId: STANDARD_OBJECT_IDS.apiKey,
namePlural: 'apiKeys',
labelSingular: 'Api Key',
labelPlural: 'Api Keys',
description: 'An api key',
labelSingular: 'API Key',
labelPlural: 'API Keys',
description: 'An API key',
icon: 'IconRobot',
labelIdentifierStandardId: API_KEY_STANDARD_FIELD_IDS.name,
})
Expand Down

0 comments on commit 508252b

Please sign in to comment.