Skip to content
Open
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
4 changes: 3 additions & 1 deletion components/KernDropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,13 @@ import SVGIcon from './SVGIcon';
import { CSSProperties } from 'react';
import useRefFor from '../hooks/useRefFor';
import { MemoIconChevronDown, MemoIconDotsVertical, MemoIconExternalLink, MemoIconTrashXFilled } from './kern-icons/icons';
import { useTranslation } from 'react-i18next';

const DEFAULTS = { fontSizeClass: 'text-xs' };

export default function KernDropdown(props: KernDropdownProps) {
const isDisabled = props.disabled || (props.options && props.options.length == 0);
const { t } = useTranslation("chatSidebar");
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

dropdown is also used in refinery and that doesn't have this afaik. i think we can make the placeholder a parameter instead


const [dropdownCaptions, setDropdownCaptions] = useState<any[]>([]);
const [disabledOptions, setDisabledOptions] = useState<boolean[]>([]);
Expand Down Expand Up @@ -196,7 +198,7 @@ export default function KernDropdown(props: KernDropdownProps) {
onFocus={(event) => event.target.select()}
className="h-9 w-full text-sm border-gray-300 rounded-md placeholder-italic border text-gray-900 pr-8 pl-4 truncate placeholder:text-gray-400 focus:outline-none focus:ring-2 focus:ring-gray-300 focus:ring-offset-2 focus:ring-offset-gray-100 disabled:opacity-50 disabled:cursor-not-allowed"
disabled={isDisabled && !props.ignoreDisabledForSearch}
placeholder="Type to search..." />
placeholder={t("actions.typeToSearch")} />
<MemoIconChevronDown
className={`h-5 w-5 absolute right-0 mr-3 -mt-7 ${isDisabled && !props.ignoreDisabledForSearch ? 'opacity-50 cursor-not-allowed' : 'cursor-pointer'} ${props.buttonIconClasses}`}
aria-hidden="true"
Expand Down