diff --git a/packages/frontend/src/views/CommandHistoryView.vue b/packages/frontend/src/views/CommandHistoryView.vue
index cdd348b..d284535 100644
--- a/packages/frontend/src/views/CommandHistoryView.vue
+++ b/packages/frontend/src/views/CommandHistoryView.vue
@@ -37,19 +37,19 @@
v-for="(entry, index) in filteredHistory"
:key="entry.id"
class="group flex justify-between items-center px-3 py-2.5 mb-1 cursor-pointer rounded-md hover:bg-primary/10 transition-colors duration-150"
- :class="{ 'bg-primary/20 text-white font-medium': index === storeSelectedIndex }"
+ :class="{ 'bg-primary/20 font-medium': index === storeSelectedIndex }"
@click="executeCommand(entry.command)"
>
- {{ entry.command }}
+ {{ entry.command }}
-
diff --git a/packages/frontend/src/views/QuickCommandsView.vue b/packages/frontend/src/views/QuickCommandsView.vue
index 8985432..81bf106 100644
--- a/packages/frontend/src/views/QuickCommandsView.vue
+++ b/packages/frontend/src/views/QuickCommandsView.vue
@@ -45,24 +45,24 @@
v-for="(cmd, index) in filteredAndSortedCommands"
:key="cmd.id"
class="group flex justify-between items-center px-3 py-2.5 mb-1 cursor-pointer rounded-md hover:bg-primary/10 transition-colors duration-150"
- :class="{ 'bg-primary/20 text-white font-medium': index === storeSelectedIndex }"
+ :class="{ 'bg-primary/20 font-medium': index === storeSelectedIndex }"
@click="executeCommand(cmd)"
>
- {{ cmd.name }}
- {{ cmd.command }}
+ {{ cmd.name }}
+ {{ cmd.command }}
- {{ cmd.usage_count }}
+ {{ cmd.usage_count }}
-
+
-
+