@cryptotaxi247 / CoPilot / commits / 45edd6bb

685 agent selection fix (#686)

* fix: ensure click event is emitted on CardEntity component * fix: update CURRENT_VERSION to 0.1.42

taylor_socfortress committed Feb 10, 2026 at 09:08 UTC 45edd6bbd5ffcc0bd586750462e4142cadc61e96
2 files changed +2 -1
backend/app/version/services/version.py
+1 -1
@@ -7,7 +7,7 @@ from loguru import logger
7 from packaging.version import Version
8
9 # Current version - update this with each release
10 -CURRENT_VERSION = "0.1.41"
10 +CURRENT_VERSION = "0.1.42"
11 VERSION_CHECK_URL = "https://api.github.com/repos/socfortress/CoPilot/releases/latest"
12
13
frontend/src/components/agents/AgentCard.vue
+1
@@ -6,6 +6,7 @@
6 :hoverable
7 :clickable
8 :class="{ critical: agent.critical_asset, selectable, selected }"
9 + @click="$emit('click')"
10 >
11 <div class="card-content">
12 <!-- Selection checkbox -->