fix: 优化最大值限制
parent
cc808cb8c5
commit
b2013436c5
|
|
@ -261,7 +261,7 @@ const { startDrag } = useSidebarDrag();
|
||||||
const handleDragSidebar = (e: MouseEvent) => {
|
const handleDragSidebar = (e: MouseEvent) => {
|
||||||
const { isSidebarMixed, collapseWidth, extraWidth, width } = props;
|
const { isSidebarMixed, collapseWidth, extraWidth, width } = props;
|
||||||
const minLimit = collapseWidth;
|
const minLimit = collapseWidth;
|
||||||
const maxLimit = isSidebarMixed ? width + 320 : 320;
|
const maxLimit = 320;
|
||||||
const currentWidth = isSidebarMixed ? extraWidth : width;
|
const currentWidth = isSidebarMixed ? extraWidth : width;
|
||||||
startDrag(
|
startDrag(
|
||||||
e,
|
e,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue