fix(web): ui
This commit is contained in:
@@ -102,7 +102,7 @@ const MySharing: React.FC = () => {
|
||||
setSelectedWorkspace(grouped[0].workspace.target_workspace_id)
|
||||
setAppList(grouped[0].items)
|
||||
}
|
||||
}, [grouped])
|
||||
}, [grouped, selectedWorkspace])
|
||||
|
||||
const handleSelectWorkspace = async (target_workspace_id: string) => {
|
||||
if (target_workspace_id === selectedWorkspace) return
|
||||
|
||||
@@ -103,8 +103,8 @@ const Editor: FC<LexicalEditorProps> =({
|
||||
|
||||
// Calculate line height based on size prop
|
||||
const lineHeight = useMemo(() => {
|
||||
return `${height ? height - 10 : size === 'small' && ['borderless', 'filled'].includes(variant) ? 18 : size === 'small' ? 16 : 20}px`
|
||||
}, [size])
|
||||
return `${height ? height - 10 : size === 'small' && variant === 'borderless' ? 18 : size === 'small' ? 16 : 20}px`
|
||||
}, [size, height, variant])
|
||||
|
||||
// Calculate placeholder minimum height
|
||||
const placeHolderMinheight = useMemo(() => {
|
||||
|
||||
Reference in New Issue
Block a user