Skip to content

Commit be81316

Browse files
committed
disabled field updates
1 parent 1b5b34c commit be81316

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/ui/layouts/secrets/SecretDetail/Configuration/index.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ export const Configuration: React.FC<{
8282
value={secret?.name}
8383
disabled
8484
onChange={() => {}}
85+
style={{ backgroundColor: 'rgba(168, 168, 168, 0.1)' }}
8586
/>
8687
</Box>
8788
<Box marginTop="lg" style={{ width: '329px' }}>
@@ -93,7 +94,7 @@ export const Configuration: React.FC<{
9394
onChange={() => {}}
9495
disabled
9596
options={[] as any}
96-
style={{ paddingLeft: '10px' }}
97+
style={{ paddingLeft: '10px', backgroundColor: 'rgba(168, 168, 168, 0.1)', color: '#a1a4ab' }}
9798
/>
9899
</Box>
99100

src/ui/layouts/secrets/Selector/SelectorDisabled.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ const SelectorDisabled: React.FC<Props> = ({ label, inputFields, width }) => {
3434
value={item[0]}
3535
disabled
3636
placeholder={''}
37+
style={{ backgroundColor: 'rgba(168, 168, 168, 0.1)' }}
3738
/>
3839
</Box>
3940
{console.log(item, 'itemitem')}
@@ -47,6 +48,7 @@ const SelectorDisabled: React.FC<Props> = ({ label, inputFields, width }) => {
4748
placeholder={''}
4849
error={{}}
4950
showPasswordOption
51+
style={{ backgroundColor: 'rgba(168, 168, 168, 0.1)' }}
5052
/>
5153
</Box>
5254
</Box>

0 commit comments

Comments
 (0)