You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I try to set custom translations to the web component on typescript and it looks like the type definition of the translations property is not matching with the defaultTranslations in the translations service.
After using // @ts-ignore on that line it knows how to process the list of strings, so probably this is type definitions mismatch between the web component and translation service.
The text was updated successfully, but these errors were encountered:
I try to set custom translations to the web component on typescript and it looks like the type definition of the translations property is not matching with the defaultTranslations in the translations service.
Type definition of web component:
blinkid-in-browser/ui/src/components.d.ts
Line 155 in ecf9868
[key: string]: string
Type definition of defaultTranslations:
blinkid-in-browser/ui/src/utils/translation.service.ts
Line 5 in ecf9868
[key: string]: string|Array<string>
After using
// @ts-ignore
on that line it knows how to process the list of strings, so probably this is type definitions mismatch between the web component and translation service.The text was updated successfully, but these errors were encountered: