From dedb839ef3984c7bb0f1456dcf2d038710c5ea6b Mon Sep 17 00:00:00 2001 From: Ashan Thamara Palihakkara <75057725+ashanthamara@users.noreply.github.com> Date: Fri, 6 Sep 2024 08:17:13 +0530 Subject: [PATCH 1/2] Fix secret show icon issue in action ui --- features/admin.actions.v1/components/action-config-form.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/admin.actions.v1/components/action-config-form.tsx b/features/admin.actions.v1/components/action-config-form.tsx index cba4742caac..ede858b870a 100644 --- a/features/admin.actions.v1/components/action-config-form.tsx +++ b/features/admin.actions.v1/components/action-config-form.tsx @@ -545,7 +545,7 @@ const ActionConfigForm: FunctionComponent = ({ required={ true } data-componentid={ `${ _componentId }-authentication-property-value` } name="valueAuthProperty" - type={ isShowSecret1 ? "text" : "password" } + type={ isShowSecret2 ? "text" : "password" } InputProps={ { endAdornment: renderInputAdornmentOfSecret( isShowSecret2, From 5439e797e01c8664d692e73131e2cb8dc0ab7416 Mon Sep 17 00:00:00 2001 From: Ashan Thamara Palihakkara <75057725+ashanthamara@users.noreply.github.com> Date: Fri, 6 Sep 2024 08:26:52 +0530 Subject: [PATCH 2/2] Added changeset --- .changeset/fair-llamas-try.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/fair-llamas-try.md diff --git a/.changeset/fair-llamas-try.md b/.changeset/fair-llamas-try.md new file mode 100644 index 00000000000..e1717cfd9cf --- /dev/null +++ b/.changeset/fair-llamas-try.md @@ -0,0 +1,5 @@ +--- +"@wso2is/admin.actions.v1": patch +--- + +Fix secret show icon issue in action ui