mirror of
https://github.com/usebruno/bruno.git
synced 2026-07-08 22:45:25 +00:00
Added semi colon
This commit is contained in:
@@ -85,7 +85,7 @@ const CollectionItem = ({ item, collectionUid, collectionPathname, searchText })
|
|||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
dragPreview(getEmptyImage(), { captureDraggingState: true });
|
dragPreview(getEmptyImage(), { captureDraggingState: true });
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
// Auto-scroll to show this item when its tab becomes active
|
// Auto-scroll to show this item when its tab becomes active
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (isTabForItemActive && ref.current) {
|
if (isTabForItemActive && ref.current) {
|
||||||
@@ -95,7 +95,7 @@ const CollectionItem = ({ item, collectionUid, collectionPathname, searchText })
|
|||||||
// ignore scroll errors (some environments may not support smooth scrolling)
|
// ignore scroll errors (some environments may not support smooth scrolling)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}, [isTabForItemActive])
|
}, [isTabForItemActive]);
|
||||||
|
|
||||||
const determineDropType = (monitor) => {
|
const determineDropType = (monitor) => {
|
||||||
const hoverBoundingRect = ref.current?.getBoundingClientRect();
|
const hoverBoundingRect = ref.current?.getBoundingClientRect();
|
||||||
|
|||||||
Reference in New Issue
Block a user