We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d23aee commit c885560Copy full SHA for c885560
client/resources/templates/commands/palette/command.html
@@ -1,3 +1,7 @@
1
+<% if (_.size(command.get("shortcuts")) > 0) { %>
2
+<span class="label shortcut"><%= command.shortcutText() %></span>
3
+<% } %>
4
+
5
<i class="fa fa-<%- command.get('icons.search') %>"></i>
6
<span class="title">
7
<% if (command.get("category")) { %>
@@ -7,7 +11,4 @@
11
</span>
8
12
<% if (command.get("label").length > 0) { %>
9
13
<span class="command-label"><%- command.get("label") %></span>
10
-<% } %>
-<% if (_.size(command.get("shortcuts")) > 0) { %>
-<span class="label shortcut"><%= command.shortcutText() %></span>
14
<% } %>
0 commit comments