Skip to content

Commit f9e85bf

Browse files
committed
fix(secrets): use cursor-text on readonly key to hint selectability
1 parent f64d322 commit f9e85bf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • apps/sim/app/workspace/[workspaceId]/settings/components/secrets/components/secrets-manager

apps/sim/app/workspace/[workspaceId]/settings/components/secrets/components/secrets-manager/secrets-manager.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ function WorkspaceVariableRow({
181181
return (
182182
<div className='contents'>
183183
<ChipInput
184-
className={cn(!canRename && 'cursor-default')}
184+
className={cn(!canRename && 'cursor-text')}
185185
value={renamingKey === envKey ? pendingKeyValue : envKey}
186186
onChange={(e) => {
187187
if (renamingKey !== envKey) onRenameStart(envKey)

0 commit comments

Comments
 (0)