From 5df4ec95d452ab2870d572954d1b4e7d7da543bc Mon Sep 17 00:00:00 2001
From: Scrum4Me Agent <30029041+madhura68@users.noreply.github.com>
Date: Fri, 8 May 2026 08:45:33 +0200
Subject: [PATCH] feat(shared): data-debug-id+label op form/select-componenten
---
components/shared/activate-product-button.tsx | 2 ++
components/shared/code-badge.tsx | 2 ++
components/shared/pbi-status-select.tsx | 2 ++
components/shared/priority-select.tsx | 2 ++
components/shared/set-current-product.tsx | 2 +-
5 files changed, 9 insertions(+), 1 deletion(-)
diff --git a/components/shared/activate-product-button.tsx b/components/shared/activate-product-button.tsx
index 90c19c4..c64da62 100644
--- a/components/shared/activate-product-button.tsx
+++ b/components/shared/activate-product-button.tsx
@@ -28,6 +28,7 @@ export function ActivateProductButton({ productId, isDemo, redirectTo, label = '
}
return (
+
+
)
}
diff --git a/components/shared/code-badge.tsx b/components/shared/code-badge.tsx
index 126dbeb..618b3af 100644
--- a/components/shared/code-badge.tsx
+++ b/components/shared/code-badge.tsx
@@ -9,6 +9,8 @@ export function CodeBadge({ code, className }: CodeBadgeProps) {
if (!code) return null
return (
+
)
}
diff --git a/components/shared/priority-select.tsx b/components/shared/priority-select.tsx
index a66e66c..e0f5561 100644
--- a/components/shared/priority-select.tsx
+++ b/components/shared/priority-select.tsx
@@ -25,6 +25,7 @@ interface PrioritySelectProps {
export function PrioritySelect({ value, onChange, className }: PrioritySelectProps) {
return (
+
+
)
}
diff --git a/components/shared/set-current-product.tsx b/components/shared/set-current-product.tsx
index c535eb6..6d173d2 100644
--- a/components/shared/set-current-product.tsx
+++ b/components/shared/set-current-product.tsx
@@ -11,5 +11,5 @@ export function SetCurrentProduct({ id, name }: { id: string; name: string }) {
return () => clearCurrentProduct()
}, [id, name, setCurrentProduct, clearCurrentProduct])
- return null
+ return
}