mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-03-23 22:14:42 +01:00
Fix potential bug in importing shortcuts
The `text` variable wasn't passing through Lingui, despite being a `msg`.
This commit is contained in:
parent
299bcf9e91
commit
369935f3e5
1 changed files with 1 additions and 1 deletions
|
@ -939,7 +939,7 @@ function ImportExport({ shortcuts, onClose }) {
|
||||||
shortcut[name] ? (
|
shortcut[name] ? (
|
||||||
<>
|
<>
|
||||||
<span class="tag collapsed insignificant">
|
<span class="tag collapsed insignificant">
|
||||||
{text}:{' '}
|
{_(text)}:{' '}
|
||||||
{type === 'checkbox'
|
{type === 'checkbox'
|
||||||
? shortcut[name] === 'on'
|
? shortcut[name] === 'on'
|
||||||
? '✅'
|
? '✅'
|
||||||
|
|
Loading…
Add table
Reference in a new issue