Skip to content

Commit 41b5f00

Browse files
committed
fix: client id make readonly
1 parent 3c31b7f commit 41b5f00

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dashboard/src/pages/Environment.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ export default function Environment() {
215215
setVariables={() => {}}
216216
inputType={TextInputType.CLIENT_ID}
217217
placeholder="Client ID"
218-
isDisabled={true}
218+
readOnly={true}
219219
/>
220220
</Center>
221221
</Flex>
@@ -231,7 +231,7 @@ export default function Environment() {
231231
setFieldVisibility={setFieldVisibility}
232232
inputType={HiddenInputType.CLIENT_SECRET}
233233
placeholder="Client Secret"
234-
isDisabled={true}
234+
readOnly={true}
235235
/>
236236
</Center>
237237
</Flex>

0 commit comments

Comments
 (0)