Skip to content

Commit

Permalink
fix(29358): fix translations
Browse files Browse the repository at this point in the history
  • Loading branch information
vanch3d committed Jan 16, 2025
1 parent e1fae1d commit 2861e1e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,12 @@ export const DataPolicyNode: FC<NodeProps<DataPolicyData>> = (props) => {
<NodeWrapper route={`node/${DataHubNodeType.DATA_POLICY}/${id}`} {...props} toolbar={<PolicyToolbar />}>
<HStack justifyContent="space-between">
<VStack alignItems="flex-start" data-testid="node-model">
<Text fontSize="xs">{t('filter')}</Text>
<Text fontSize="xs">{t('validator')}</Text>
<Text fontSize="xs">
{t('workspace.handles.validation', { context: DataPolicyData.Handle.TOPIC_FILTER })}
</Text>
<Text fontSize="xs">
{t('workspace.handles.validation', { context: DataPolicyData.Handle.VALIDATION })}
</Text>
</VStack>
<VStack alignItems="flex-end" data-testid="node-model">
<Text fontSize="xs">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,8 @@
"handles": {
"validation_onSuccess": "onSuccess",
"validation_onError": "onError",
"validation_topicFilter": "filter",
"validation_validation": "validation",
"behavior_serial.will": "onWill",
"behavior_serial.publish": "onPublish",
"operation_deserialiser": "deserializer",
Expand Down

0 comments on commit 2861e1e

Please sign in to comment.