mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-02-08 12:14:56 -05:00
Auto-format frontend (#2009)
* Auto-format frontend * Update lint-frontend GA workflow node and checkout * Fix linter error in ThemeChanger * Add a `on: pull_request` to lint-frontend workflow Co-authored-by: Lincoln Stein <lincoln.stein@gmail.com>
This commit is contained in:
@@ -20,10 +20,15 @@ const IAITooltip = (props: IAITooltipProps) => {
|
||||
<Tooltip.Portal>
|
||||
<Tooltip.Content
|
||||
{...contentProps}
|
||||
onPointerDownOutside={(e) => {e.preventDefault()}}
|
||||
onPointerDownOutside={(e) => {
|
||||
e.preventDefault();
|
||||
}}
|
||||
className="invokeai__tooltip-content"
|
||||
>
|
||||
<Tooltip.Arrow {...arrowProps} className="invokeai__tooltip-arrow" />
|
||||
<Tooltip.Arrow
|
||||
{...arrowProps}
|
||||
className="invokeai__tooltip-arrow"
|
||||
/>
|
||||
{children}
|
||||
</Tooltip.Content>
|
||||
</Tooltip.Portal>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { RefObject, useEffect} from 'react';
|
||||
import { RefObject, useEffect } from 'react';
|
||||
|
||||
const watchers: {
|
||||
ref: RefObject<HTMLElement>;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { createIcon } from "@chakra-ui/react";
|
||||
import { createIcon } from '@chakra-ui/react';
|
||||
|
||||
const ImageToImageIcon = createIcon({
|
||||
displayName: 'ImageToImageIcon',
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { createIcon } from "@chakra-ui/react";
|
||||
import { createIcon } from '@chakra-ui/react';
|
||||
|
||||
const NodesIcon = createIcon({
|
||||
displayName: 'NodesIcon',
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { createIcon } from "@chakra-ui/react";
|
||||
import { createIcon } from '@chakra-ui/react';
|
||||
|
||||
const OutpaintIcon = createIcon({
|
||||
displayName: 'OutpaintIcon',
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { createIcon } from "@chakra-ui/react";
|
||||
import { createIcon } from '@chakra-ui/react';
|
||||
|
||||
const TextToImageIcon = createIcon({
|
||||
displayName: 'TextToImageIcon',
|
||||
|
||||
Reference in New Issue
Block a user