Skip to content
This repository has been archived by the owner on Sep 22, 2024. It is now read-only.

Commit

Permalink
0.5.35
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelrk committed May 19, 2024
1 parent 005cff5 commit 4a1b10d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion lib/cli/src/version.ts
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion lib/components/combobox-virtualized.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ export function ComboboxVirtualized({
disabled={disabled}
className="w-full justify-between hover:bg-secondary/20 active:scale-100"
>
<span className="line-clamp-1 text-left font-normal">
<span className="text-wrap line-clamp-1 text-left font-normal">
{selectedOption ? selectedOptionLabel : searchPlaceholder}
</span>
<i className="mdi-unfold-more-horizontal h-4 w-4 shrink-0 opacity-50" />
Expand Down
12 changes: 6 additions & 6 deletions lib/components/combobox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down Expand Up @@ -82,7 +82,7 @@ export const Combobox = React.forwardRef(
disabled={props.disabled}
className="w-full justify-between hover:bg-secondary/20 active:scale-100"
>
<span className="line-clamp-1 text-left font-normal">
<span className="text-wrap line-clamp-1 text-left font-normal">
{props.multiple && props.value && props.value.length === 1 && (
<span className="mr-2">{props.value}</span>
)}
Expand Down

0 comments on commit 4a1b10d

Please sign in to comment.