diff --git a/dashboard/src/components/Atoms/Config/InputBox.tsx b/dashboard/src/components/Atoms/Config/InputBox.tsx
index a25bd46e..1e2e5b2a 100644
--- a/dashboard/src/components/Atoms/Config/InputBox.tsx
+++ b/dashboard/src/components/Atoms/Config/InputBox.tsx
@@ -170,7 +170,8 @@ export default function InputBox({
let icons = [];
- if (typeModified !== 'password' && touched) {
+ // enable editing regardless of input type
+ if (touched) {
icons.push(
@@ -255,7 +257,7 @@ export default function InputBox({
{
setValue(value.trim());
}}
- disabled={typeModified === 'password' ? true : disabled}
+ disabled={disabled}
type={typeModified}
autoComplete={DISABLE_AUTOFILL}
/>