Sébastien Roux
Results
2
comments of
Sébastien Roux
Dirty workaround: ```javascript translate(key: string): Promise { const message$ = defer(async () => this.translateService.instant(key)); return message$ .pipe( delay(10), expand(value => value !== key ? EMPTY : message$), filter(value => value...