Skip to content

Commit 2d58e1b

Browse files
Fix broken translation string (#268460)
## Summary This is a quick fix for a broken translating string that was spamming the browser console. --------- Co-authored-by: Lorena Bălan <lorena.balan@elastic.co>
1 parent 7decf0a commit 2d58e1b

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

  • src/platform/packages/shared/kbn-connector-specs/src/specs/snowflake

src/platform/packages/shared/kbn-connector-specs/src/specs/snowflake/snowflake.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,10 @@ export const Snowflake: ConnectorSpec = {
243243
'core.kibanaConnectorSpecs.snowflake.auth.oauth.tokenUrl.helpText',
244244
{
245245
defaultMessage:
246-
'Snowflake OAuth token endpoint. Replace <account> with your Snowflake account identifier.',
246+
'Snowflake OAuth token endpoint. Replace {accountPlaceholder} with your Snowflake account identifier.',
247+
values: {
248+
accountPlaceholder: '{account}',
249+
},
247250
}
248251
),
249252
},

0 commit comments

Comments
 (0)