Commit 34e51915 by Archer Committed by GitHub

fix: collection ui (#5704)

parent 7cdb16c8
......@@ -66,7 +66,7 @@ export const useTableMultipleSelect = <T = any,>({
activedStyles,
...props
}: { children?: ReactNode; activedStyles?: FlexProps; Controler: ReactNode } & FlexProps) => {
return hasSelections ? (
return hasSelections || !!children ? (
<Flex
w={'100%'}
bg="white"
......
......@@ -348,6 +348,10 @@ const ModelTable = () => {
</TableContainer>
<FloatingActionBar
activedStyles={{
borderRadius: 'md',
boxShadow: 'md'
}}
Controler={
<LazyCollaboratorProvider
selectedHint={t('account_model:model_permission_config_hint')}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment