mirror of
https://github.com/element-hq/element-web
synced 2024-11-22 01:05:42 +03:00
Fix untranslated keys being rendered in /help
dialog (#90)
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
39a0f6e17b
commit
f33e802627
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ const SlashCommandHelpDialog: React.FC<IProps> = ({ onFinished }) => {
|
|||
<strong>{cmd.getCommand()}</strong>
|
||||
</td>
|
||||
<td>{cmd.args}</td>
|
||||
<td>{cmd.description}</td>
|
||||
<td>{_t(cmd.description)}</td>
|
||||
</tr>,
|
||||
);
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue