refactor(ui): improve layout and accessibility in various components

- Updated the grid layout in the Home page for better responsiveness.
- Adjusted tabIndex handling in MultiSelect component to enhance accessibility.
- Added minimum width to the TopChannels table for consistent display.
- Refined notification recipient placeholder logic for cleaner code.
This commit is contained in:
AmirReza Jamali
2026-04-28 15:16:33 +03:30
parent 013788d566
commit 5bf3e53d95
4 changed files with 8 additions and 8 deletions
@@ -82,9 +82,7 @@ const CreateNotificationForm = () => {
label="recipient"
items={recipient ?? []}
placeholder={
recipient && recipient.length > 0
? "Choose recipients"
: ""
recipient && recipient.length > 0 ? "Choose recipients" : ""
}
name="recipient"
/>