Fix react warnings on workspace shortcuts panel

This commit is contained in:
Andrey Antukh 2023-05-15 15:44:20 +02:00 committed by Alejandro Alonso
parent ca439cf604
commit 5d8562e072

View file

@ -7,6 +7,7 @@
(ns app.main.ui.workspace.sidebar.shortcuts (ns app.main.ui.workspace.sidebar.shortcuts
(:require (:require
[app.common.data :as d] [app.common.data :as d]
[app.common.data.macros :as dm]
[app.config :as cf] [app.config :as cf]
[app.main.data.dashboard.shortcuts] [app.main.data.dashboard.shortcuts]
[app.main.data.events :as ev] [app.main.data.events :as ev]
@ -224,13 +225,16 @@
(for [chars short-char-list] (for [chars short-char-list]
[:* [:*
(for [char chars] (for [char chars]
[:& converted-chars {:char char :command command}]) [:& converted-chars {:key (dm/str char "-" (name command))
:char char
:command command}])
(when (not= chars penultimate) [:span.space ","])]) (when (not= chars penultimate) [:span.space ","])])
(when (not= last-element penultimate) (when (not= last-element penultimate)
[:* [:*
[:span.space (tr "shortcuts.or")] [:span.space (tr "shortcuts.or")]
(for [char last-element] (for [char last-element]
[:& converted-chars {:char char [:& converted-chars {:key (dm/str char "-" (name command))
:char char
:command command}])])])) :command command}])])]))
(mf/defc shortcut-row (mf/defc shortcut-row