Skip to content

Commit db88501

Browse files
committed
fix: implement proposed fix
1 parent c62a634 commit db88501

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

view/components/ui/env-variables-editor.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ const EnvVariableRow = ({
153153
`,
154154
variable.isSecret && !isRevealed && 'select-none'
155155
)}
156-
title={variable.value}
156+
title={variable.isSecret && !isRevealed ? undefined : variable.value}
157157
>
158158
{variable.isSecret && !isRevealed ? maskValue(variable.value) : variable.value}
159159
</span>

0 commit comments

Comments
 (0)