Skip to content
This repository was archived by the owner on Oct 22, 2024. It is now read-only.

Commit f33e802

Browse files
authored
Fix untranslated keys being rendered in /help dialog (#90)
Signed-off-by: Michael Telatynski <[email protected]>
1 parent 39a0f6e commit f33e802

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/components/views/dialogs/SlashCommandHelpDialog.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const SlashCommandHelpDialog: React.FC<IProps> = ({ onFinished }) => {
4545
<strong>{cmd.getCommand()}</strong>
4646
</td>
4747
<td>{cmd.args}</td>
48-
<td>{cmd.description}</td>
48+
<td>{_t(cmd.description)}</td>
4949
</tr>,
5050
);
5151
});

0 commit comments

Comments
 (0)