We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c313db2 commit 281a904Copy full SHA for 281a904
plugins/login-resources/src/components/providers/OpenId.svelte
@@ -2,12 +2,11 @@
2
import { Label } from '@hcengineering/ui'
3
import OpenId from '../icons/OpenId.svelte'
4
import login from '../../plugin'
5
- import { getMetadata } from '@hcengineering/platform'
6
7
- const openIdDisplayName = getMetadata(login.metadata.OpenIdDisplayName) ?? 'OpenId'
+ export let displayName = 'OpenId'
8
</script>
9
10
<div class="flex-row-center flex-gap-2">
11
<OpenId />
12
- <Label label={login.string.ContinueWith} params={{ provider: openIdDisplayName }} />
+ <Label label={login.string.ContinueWith} params={{ provider: displayName }} />
13
</div>
0 commit comments