mirror of
https://github.com/logseq/logseq.git
synced 2026-05-28 06:34:34 +00:00
fix(whiteboard): portal shape min size
This commit is contained in:
@@ -887,7 +887,7 @@ export class LogseqPortalShape extends TLBoxShape<LogseqPortalShapeProps> {
|
||||
validateProps = (props: Partial<LogseqPortalShapeProps>) => {
|
||||
if (props.size !== undefined) {
|
||||
const scale = levelToScale[this.props.scaleLevel ?? 'md']
|
||||
props.size[0] = Math.max(props.size[0], 240 * scale)
|
||||
props.size[0] = Math.max(props.size[0], 60 * scale)
|
||||
props.size[1] = Math.max(props.size[1], HEADER_HEIGHT * scale)
|
||||
}
|
||||
return withClampedStyles(this, props)
|
||||
|
||||
Reference in New Issue
Block a user