Skip to content

Commit

Permalink
Merge pull request #750 from invoiceninja/develop
Browse files Browse the repository at this point in the history
Sync develop and main
  • Loading branch information
beganovich authored Jun 14, 2023
2 parents 724a588 + ab2f83f commit af7c875
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/forms/Combobox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,7 @@ export function ComboboxStatic({
>
{action && action.visible && (
<button
type="button"
onClick={action.onClick}
className="min-w-[19rem] relative cursor-pointer select-none py-2 pl-3 pr-9 text-gray-900 hover:bg-gray-100"
tabIndex={-1}
Expand Down Expand Up @@ -357,7 +358,7 @@ export function ComboboxAsync<T = any>({
if (query.length > 0 && current) {
current.searchParams.set('filter', query);
}

return new URL(current.href);
});
};
Expand Down

0 comments on commit af7c875

Please sign in to comment.