mirror of https://github.com/vector-im/riot-web
Fix untranslated keys being rendered in `/help` dialog (#90)
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>pull/28192/head
parent
39a0f6e17b
commit
f33e802627
|
@ -45,7 +45,7 @@ const SlashCommandHelpDialog: React.FC<IProps> = ({ onFinished }) => {
|
||||||
<strong>{cmd.getCommand()}</strong>
|
<strong>{cmd.getCommand()}</strong>
|
||||||
</td>
|
</td>
|
||||||
<td>{cmd.args}</td>
|
<td>{cmd.args}</td>
|
||||||
<td>{cmd.description}</td>
|
<td>{_t(cmd.description)}</td>
|
||||||
</tr>,
|
</tr>,
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue