Skip to content

Commit b4d9d13

Browse files
authored
Minor UI fixes (#259)
* Fixing integration configuration form with password fields not showing * Fixing user subscriptions list not showing in user details subscription tab
1 parent 8067aab commit b4d9d13

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

frontend/src/app/shared/components/Forms.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ const InputPassword = ({ name, placeholder }: FormEditorProps) => {
353353

354354
return (
355355
<>
356-
<PasswordInput id={name} {...field} invalid={isInvalid(fieldState, formState)} autoFocus={autoFocus}
356+
<PasswordInput id={name} {...field} invalid={isInvalid(fieldState, formState)}
357357
placeholder={placeholder}
358358
/>
359359
</>

frontend/src/app/state/subscriptions/actions.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ const initialState: SubscriptionsState = {
5454
};
5555

5656
const operations = [
57+
loadSubscriptions,
5758
upsertSubscription,
5859
deleteSubscription,
5960
];

0 commit comments

Comments
 (0)