fix: body scrolls to top after opening a modal

This commit is contained in:
jialin
2025-01-09 11:27:44 +08:00
parent fb4666195c
commit a374d4d40f
7 changed files with 102 additions and 60 deletions
+1 -1
View File
@@ -53,7 +53,7 @@ const TagsWrapper: React.FC<TagsWrapperProps> = (props) => {
const nodeWidth = sizeList[i];
if (totalWidth + moreButtonWidth.current >= wrapperWidth) {
end = i - 1;
end = i - 1 < 0 ? 0 : i - 1;
break;
}
totalWidth += nodeWidth;