diff --git a/lib/cli/src/version.ts b/lib/cli/src/version.ts index 3ab19cc3..40ba632a 100644 --- a/lib/cli/src/version.ts +++ b/lib/cli/src/version.ts @@ -1,5 +1,5 @@ // latest version of netzo/cli (see https://github.com/netzo/netzo/releases) -export const VERSION = "0.5.34"; +export const VERSION = "0.5.35"; // minimum version of Deno required to run this CLI // (see https://github.com/denoland/deployctl/blob/main/src/version.ts) diff --git a/lib/components/combobox-virtualized.tsx b/lib/components/combobox-virtualized.tsx index 38e29cf0..50cbc2e7 100644 --- a/lib/components/combobox-virtualized.tsx +++ b/lib/components/combobox-virtualized.tsx @@ -153,7 +153,7 @@ export function ComboboxVirtualized({ disabled={disabled} className="w-full justify-between hover:bg-secondary/20 active:scale-100" > - + {selectedOption ? selectedOptionLabel : searchPlaceholder} diff --git a/lib/components/combobox.tsx b/lib/components/combobox.tsx index 84a02f61..0734da8d 100644 --- a/lib/components/combobox.tsx +++ b/lib/components/combobox.tsx @@ -4,11 +4,11 @@ import * as React from "react"; import { Button } from "./button.tsx"; import { - Command, - CommandEmpty, - CommandGroup, - CommandInput, - CommandItem, + Command, + CommandEmpty, + CommandGroup, + CommandInput, + CommandItem, } from "./command.tsx"; import { Popover, PopoverContent, PopoverTrigger } from "./popover.tsx"; import { ScrollArea } from "./scroll-area.tsx"; @@ -82,7 +82,7 @@ export const Combobox = React.forwardRef( disabled={props.disabled} className="w-full justify-between hover:bg-secondary/20 active:scale-100" > - + {props.multiple && props.value && props.value.length === 1 && ( {props.value} )}