Skip to content

Commit

Permalink
feat(front):add ai proxy (#5198)
Browse files Browse the repository at this point in the history
* ok

* update package

* ok

* ok

* add @tanstack/react-query

* ok

* ok

* add QueryProvider

* update api

* update api

* done

* ok

* done

* logs done

* ok

* ok

* ok

* ok

* update ui

* ok

* ok

* ok

* ok

* update api

* no cache

* ui

* ok

* ok

* ok

* ok

* update logs page

* ok

* ok

* update input

* update log page

* ok

* ok

* ok

* ok

* ok

* ok

* ok

* ok

* feat: add two types in workorder (#5197)

* feat: add two types in workorder

* update

* docs:update google script (#5199)

* feat: delete password, add authorized_key. (#5194)

* feat: delete password, add authorized_key.

* fix init secret.

* change ssh key mode.

* ok

---------

Co-authored-by: zjy <[email protected]>
Co-authored-by: jingyang <[email protected]>
Co-authored-by: yy <[email protected]>
  • Loading branch information
4 people authored Nov 12, 2024
1 parent c808ad6 commit ec8fd15
Show file tree
Hide file tree
Showing 80 changed files with 5,955 additions and 40 deletions.
5 changes: 4 additions & 1 deletion frontend/packages/ui/src/components/Select/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
MenuButton,
Flex
} from '@chakra-ui/react';
import type { ButtonProps } from '@chakra-ui/react';
import type { BoxProps, ButtonProps } from '@chakra-ui/react';
import { ChevronDownIcon } from '@chakra-ui/icons';

interface Props extends ButtonProps {
Expand All @@ -26,6 +26,7 @@ interface Props extends ButtonProps {
}[];
onchange?: (val: string) => void;
isInvalid?: boolean;
boxStyle?: BoxProps;
}

const MySelect = (
Expand All @@ -37,6 +38,7 @@ const MySelect = (
list,
onchange,
isInvalid,
boxStyle,
...props
}: Props,
selectRef: any
Expand All @@ -62,6 +64,7 @@ const MySelect = (
onClick={() => {
isOpen ? onClose() : onOpen();
}}
{...boxStyle}
>
<MenuButton
as={Button}
Expand Down
Loading

0 comments on commit ec8fd15

Please sign in to comment.