mirror of
https://github.com/labring/FastGPT.git
synced 2025-12-25 20:02:47 +00:00
fix: table size (#5598)
Some checks failed
Document deploy / sync-images (push) Has been cancelled
Build FastGPT images in Personal warehouse / get-vars (push) Has been cancelled
Document deploy / generate-timestamp (push) Has been cancelled
Document deploy / build-images (map[domain:https://fastgpt.cn suffix:cn]) (push) Has been cancelled
Document deploy / build-images (map[domain:https://fastgpt.io suffix:io]) (push) Has been cancelled
Document deploy / update-images (map[deployment:fastgpt-docs domain:https://fastgpt.cn kube_config:KUBE_CONFIG_CN suffix:cn]) (push) Has been cancelled
Document deploy / update-images (map[deployment:fastgpt-docs domain:https://fastgpt.io kube_config:KUBE_CONFIG_IO suffix:io]) (push) Has been cancelled
Build FastGPT images in Personal warehouse / build-fastgpt-images (map[arch:amd64 runs-on:ubuntu-24.04]) (push) Has been cancelled
Build FastGPT images in Personal warehouse / build-fastgpt-images (map[arch:arm64 runs-on:ubuntu-24.04-arm]) (push) Has been cancelled
Build FastGPT images in Personal warehouse / release-fastgpt-images (push) Has been cancelled
Some checks failed
Document deploy / sync-images (push) Has been cancelled
Build FastGPT images in Personal warehouse / get-vars (push) Has been cancelled
Document deploy / generate-timestamp (push) Has been cancelled
Document deploy / build-images (map[domain:https://fastgpt.cn suffix:cn]) (push) Has been cancelled
Document deploy / build-images (map[domain:https://fastgpt.io suffix:io]) (push) Has been cancelled
Document deploy / update-images (map[deployment:fastgpt-docs domain:https://fastgpt.cn kube_config:KUBE_CONFIG_CN suffix:cn]) (push) Has been cancelled
Document deploy / update-images (map[deployment:fastgpt-docs domain:https://fastgpt.io kube_config:KUBE_CONFIG_IO suffix:io]) (push) Has been cancelled
Build FastGPT images in Personal warehouse / build-fastgpt-images (map[arch:amd64 runs-on:ubuntu-24.04]) (push) Has been cancelled
Build FastGPT images in Personal warehouse / build-fastgpt-images (map[arch:arm64 runs-on:ubuntu-24.04-arm]) (push) Has been cancelled
Build FastGPT images in Personal warehouse / release-fastgpt-images (push) Has been cancelled
This commit is contained in:
parent
25207c5060
commit
bdb89a3e0c
|
|
@ -149,7 +149,7 @@ const FavouriteAppSetting = ({ Header }: Props) => {
|
|||
|
||||
return (
|
||||
<Box
|
||||
maxW="120px"
|
||||
maxW={['120px', '160px']}
|
||||
key={id}
|
||||
fontSize="xs"
|
||||
borderRadius="sm"
|
||||
|
|
@ -250,7 +250,7 @@ const FavouriteAppSetting = ({ Header }: Props) => {
|
|||
</Flex>
|
||||
|
||||
{/* 表格内容 */}
|
||||
<Box overflow={'auto'} flex="1 0 0" h={0} px={[2, 0]} minH="300px">
|
||||
<Box overflow={'auto'} flex="1 0 0" h={0} px={[2, 0]}>
|
||||
{localFavourites.length > 0 ? (
|
||||
<DndDrag<ChatFavouriteApp>
|
||||
dataList={localFavourites}
|
||||
|
|
@ -337,6 +337,7 @@ const FavouriteAppSetting = ({ Header }: Props) => {
|
|||
cursor="help"
|
||||
overflow="hidden"
|
||||
whiteSpace="nowrap"
|
||||
verticalAlign="middle"
|
||||
display="inline-block"
|
||||
textOverflow="ellipsis"
|
||||
>
|
||||
|
|
@ -395,7 +396,7 @@ const FavouriteAppSetting = ({ Header }: Props) => {
|
|||
maxW="300px"
|
||||
onClick={(e) => e.stopPropagation()}
|
||||
>
|
||||
{row.favouriteTags.map((id) => (
|
||||
{row.favouriteTags.slice(2).map((id) => (
|
||||
<TagBox key={id} id={id} />
|
||||
))}
|
||||
</Flex>
|
||||
|
|
|
|||
Loading…
Reference in New Issue