Skip to content

Commit 7e22775

Browse files
committed
feat: improved text for sudo password and progress display
1 parent d40df9e commit 7e22775

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@
145145
"deploy": "npm run pkg && npm run notarize && npm run upload",
146146
"prepublishOnly": "npm run build"
147147
},
148-
"version": "1.1.0-beta10",
148+
"version": "1.1.0-beta.1",
149149
"bugs": "https://github.com/codifycli/codify/issues",
150150
"keywords": [
151151
"oclif",

src/ui/components/progress/progress-display.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ export function SubProgressDisplay(
9292

9393
return <>
9494
{hiddenCount > 0 && (
95-
<Text dimColor> and {hiddenCount} other{hiddenCount !== 1 ? 's' : ''}...</Text>
95+
<Text dimColor><Text color="greenBright" dimColor={false}></Text> and {hiddenCount} other{hiddenCount !== 1 ? 's' : ''}...</Text>
9696
)}
9797
{sorted.map((s, idx) =>
9898
s.status === ProgressStatus.IN_PROGRESS

src/ui/components/widgets/SudoPasswordInput.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export function SudoPasswordInput(props: {
5858
<Spinner label="Checking password..." />
5959
) : (
6060
<Box>
61-
<Text bold color={borderColor}>Sudo Password: </Text>
61+
<Text bold color={borderColor}>Sudo Password</Text>{cancellable && <Text dimColor color='gray'> (save for session)</Text>}<Text bold color={borderColor}>: </Text>
6262
<Text>{value.replace(/./g, '*')}</Text>
6363
<Text inverse> </Text>
6464
</Box>

0 commit comments

Comments
 (0)