Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f373011 commit 1f4d542Copy full SHA for 1f4d542
src/client/components/DynamicParameter.tsx
@@ -153,13 +153,15 @@ const ParameterLabel: FC<ParameterLabelProps> = ({
153
<Label
154
htmlFor={id}
155
className="flex flex-wrap gap-2 font-medium text-content-primary text-sm"
156
+ role="button"
157
+ onClick={onGoToDefinition}
158
>
- <button className="flex hover:underline" onClick={onGoToDefinition}>
159
+ <span className="flex hover:underline">
160
{displayName}
161
{parameter.required && (
162
<span className="text-content-destructive">*</span>
163
)}
- </button>
164
+ </span>
165
{!parameter.mutable && (
166
<TooltipProvider delayDuration={100}>
167
<Tooltip>
0 commit comments