Skip to content

Commit 3fc8529

Browse files
committed
Mark all secrets as required (not true for Atlassian, but we cannot make exception for it)
Signed-off-by: Trung Nguyen <trung.nguyen@docker.com>
1 parent 4d48a9e commit 3fc8529

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • src/extension/ui/src/components/tile

src/extension/ui/src/components/tile/Modal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ const ConfigurationModal = ({
418418
}
419419
disabled={secret.assigned}
420420
key={secret.name}
421-
label={secret.name}
421+
label={`${secret.name} (required)`}
422422
value={localSecrets[secret.name]}
423423
fullWidth
424424
onChange={(e) => {

0 commit comments

Comments
 (0)