Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed the dashboard filters #365

Merged
merged 1 commit into from
May 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ ecosystem.config.js
.env.local.dev
.vscode
.env.remote.dev
todo.md
/test-results/
/playwright-report/
/playwright/.cache/
2 changes: 1 addition & 1 deletion components/Forms/formComponents/Select.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const Select = forwardRef(function Select(props, ref) {
ref={ref}
as="select"
{...props}
className='flex-none w-full p-2 border border-gray-400 rounded bg-transparent flex-grow placeholder-gray-200 focus:border-black outline-none'>
className='flex-none max-w-min p-2 border border-gray-800 rounded bg-transparent flex-grow placeholder-gray-200 focus:border-black outline-none'>
{
((_options) => _options.map(({ value, label }, i) =>
<option className={`py-1 hover:bg-red-300 text-normal font-normal ${i == 0 ? 'text-gray-300' : ''}`} key={i} value={value}>{label}</option>
Expand Down
Loading
Loading