diff options
Diffstat (limited to 'app/src/Keyboard/Keys/KeyValue.js')
-rw-r--r-- | app/src/Keyboard/Keys/KeyValue.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/src/Keyboard/Keys/KeyValue.js b/app/src/Keyboard/Keys/KeyValue.js index b05c51d..852476d 100644 --- a/app/src/Keyboard/Keys/KeyValue.js +++ b/app/src/Keyboard/Keys/KeyValue.js @@ -12,7 +12,7 @@ function NullKey() { function KeyValue(props) { const { param, index, value, source, onSelect } = props const title = source && `(${source.code}) ${source.description}` - const text = source && <span>{source?.symbol || source?.code}</span> + const text = source && (source?.symbol || source?.code) const icon = source?.faIcon && <Icon name={source.faIcon} /> const handleClick = useMemo(() => function (event) { |