Skip to content

Commit 14ba8cf

Browse files
authored
Merge branch 'dev' into feat/1366
2 parents e2feef3 + 0e9dd3b commit 14ba8cf

File tree

3 files changed

+2
-20
lines changed

3 files changed

+2
-20
lines changed

cats-frontend/src/app/components/account/UserAccount.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717

1818
.account-custom-menu {
19-
height: 231px;
19+
height: auto;
2020
border-radius: var(--layout-border-radius-medium) !important;
2121
padding: var(--layout-padding-medium) 0px var(--layout-padding-medium) 0px !important;
2222
background-color: var(--surface-color-background-white) !important;

cats-frontend/src/app/components/account/UserAccount.tsx

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -85,15 +85,6 @@ const UserAccount = (props: any) => {
8585
aria-labelledby="account-dropdown"
8686
className="p-0"
8787
>
88-
{/* Account settings */}
89-
<div
90-
role="menuitem"
91-
aria-label="Account Settings"
92-
tabIndex={0} // Make focusable with keyboard
93-
className="account-custom-item-mobile"
94-
>
95-
Account Settings
96-
</div>
9788
{/* Logout */}
9889
<div
9990
role="menuitem"
@@ -163,15 +154,6 @@ const UserAccount = (props: any) => {
163154
</div>
164155
</Dropdown.Item>
165156
<div className="pt-3">
166-
{/* Account settings */}
167-
<Dropdown.Item
168-
role="menuitem"
169-
className="account-custom-item"
170-
aria-label="Account Settings"
171-
>
172-
Account Settings
173-
</Dropdown.Item>
174-
175157
{/* Logout */}
176158
<Dropdown.Item
177159
role="menuitem"

cats-frontend/src/app/components/input-controls/InputControls.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1084,7 +1084,7 @@ export const DropdownSearchInput: React.FC<InputProps> = ({
10841084
setSearchTerm('');
10851085
setFilteredOpts([]);
10861086
setIsClear(true);
1087-
handler('');
1087+
//handler('');
10881088
};
10891089

10901090
// Function to handle clicks outside the div element

0 commit comments

Comments
 (0)