Lints go away!
This commit is contained in:
@@ -50,7 +50,10 @@ done
|
|||||||
[ -n "$VERSION" ] || { echo "--version is required" >&2; exit 1; }
|
[ -n "$VERSION" ] || { echo "--version is required" >&2; exit 1; }
|
||||||
[ -n "$TARGET" ] || { echo "--target is required" >&2; exit 1; }
|
[ -n "$TARGET" ] || { echo "--target is required" >&2; exit 1; }
|
||||||
|
|
||||||
ROOT_DIR=$(CDPATH= cd -- "$(dirname -- "$0")/.." && pwd)
|
ROOT_DIR=$(
|
||||||
|
unset CDPATH
|
||||||
|
cd -- "$(dirname -- "$0")/.." && pwd
|
||||||
|
)
|
||||||
cd "$ROOT_DIR"
|
cd "$ROOT_DIR"
|
||||||
|
|
||||||
if [ -z "$BINARY" ]; then
|
if [ -z "$BINARY" ]; then
|
||||||
|
|||||||
@@ -137,7 +137,7 @@ function DropdownMenuSubContent({
|
|||||||
<DropdownMenuContent
|
<DropdownMenuContent
|
||||||
data-slot="dropdown-menu-sub-content"
|
data-slot="dropdown-menu-sub-content"
|
||||||
className={cn(
|
className={cn(
|
||||||
"w-auto min-w-[96px] rounded-lg bg-popover p-1 text-popover-foreground shadow-lg ring-1 ring-foreground/10 duration-100 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 data-open:animate-in data-open:fade-in-0 data-open:zoom-in-95 data-closed:animate-out data-closed:fade-out-0 data-closed:zoom-out-95",
|
"w-auto min-w-24 rounded-lg bg-popover p-1 text-popover-foreground shadow-lg ring-1 ring-foreground/10 duration-100 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 data-open:animate-in data-open:fade-in-0 data-open:zoom-in-95 data-closed:animate-out data-closed:fade-out-0 data-closed:zoom-out-95",
|
||||||
className,
|
className,
|
||||||
)}
|
)}
|
||||||
align={align}
|
align={align}
|
||||||
@@ -170,7 +170,7 @@ function DropdownMenuCheckboxItem({
|
|||||||
{...props}
|
{...props}
|
||||||
>
|
>
|
||||||
<span
|
<span
|
||||||
className="pointer-events-none absolute end-2 flex items-center justify-center"
|
className="pointer-events-none absolute inset-e-2 flex items-center justify-center"
|
||||||
data-slot="dropdown-menu-checkbox-item-indicator"
|
data-slot="dropdown-menu-checkbox-item-indicator"
|
||||||
>
|
>
|
||||||
<MenuPrimitive.CheckboxItemIndicator>
|
<MenuPrimitive.CheckboxItemIndicator>
|
||||||
@@ -210,7 +210,7 @@ function DropdownMenuRadioItem({
|
|||||||
{...props}
|
{...props}
|
||||||
>
|
>
|
||||||
<span
|
<span
|
||||||
className="pointer-events-none absolute end-2 flex items-center justify-center"
|
className="pointer-events-none absolute inset-e-2 flex items-center justify-center"
|
||||||
data-slot="dropdown-menu-radio-item-indicator"
|
data-slot="dropdown-menu-radio-item-indicator"
|
||||||
>
|
>
|
||||||
<MenuPrimitive.RadioItemIndicator>
|
<MenuPrimitive.RadioItemIndicator>
|
||||||
|
|||||||
@@ -128,7 +128,7 @@ function SelectItem({
|
|||||||
</SelectPrimitive.ItemText>
|
</SelectPrimitive.ItemText>
|
||||||
<SelectPrimitive.ItemIndicator
|
<SelectPrimitive.ItemIndicator
|
||||||
render={
|
render={
|
||||||
<span className="pointer-events-none absolute end-2 flex size-4 items-center justify-center" />
|
<span className="pointer-events-none absolute inset-e-2 flex size-4 items-center justify-center" />
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
<CheckIcon className="pointer-events-none" />
|
<CheckIcon className="pointer-events-none" />
|
||||||
|
|||||||
@@ -180,7 +180,7 @@ export function AlertsPage({ alerts, transitions, onRefresh }: Props) {
|
|||||||
</label>
|
</label>
|
||||||
|
|
||||||
<Textarea
|
<Textarea
|
||||||
className="min-h-[230px] font-mono text-xs"
|
className="min-h-57.5 font-mono text-xs"
|
||||||
readOnly
|
readOnly
|
||||||
value={JSON.stringify(filteredTransitions, null, 2)}
|
value={JSON.stringify(filteredTransitions, null, 2)}
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -127,7 +127,7 @@ export function AuditPage({ events, onRefresh }: Props) {
|
|||||||
</p>
|
</p>
|
||||||
|
|
||||||
<Textarea
|
<Textarea
|
||||||
className="min-h-[360px] font-mono text-xs"
|
className="min-h-90 font-mono text-xs"
|
||||||
readOnly
|
readOnly
|
||||||
value={JSON.stringify(filtered, null, 2)}
|
value={JSON.stringify(filtered, null, 2)}
|
||||||
/>
|
/>
|
||||||
|
|||||||
Reference in New Issue
Block a user