👷 Improve sentry release detection
This commit is contained in:
@ -13,6 +13,7 @@ import { ItemNodeContent } from './ItemNodeContent'
|
||||
import { ItemNodeContextMenu } from './ItemNodeContextMenu'
|
||||
import { ContextMenu } from '@/components/ContextMenu'
|
||||
import { setMultipleRefs } from '@/utils/helpers'
|
||||
import { isDefined } from 'utils'
|
||||
|
||||
type Props = {
|
||||
item: Item
|
||||
@ -39,11 +40,12 @@ export const ItemNode = ({
|
||||
const itemRef = useRef<HTMLDivElement | null>(null)
|
||||
const isPreviewing = previewingEdge?.from.itemId === item.id
|
||||
const isConnectable =
|
||||
isDefined(typebot) &&
|
||||
!connectionDisabled &&
|
||||
!(
|
||||
typebot?.groups[indices.groupIndex].blocks[
|
||||
indices.blockIndex
|
||||
] as ChoiceInputBlock
|
||||
typebot.groups[indices.groupIndex].blocks[indices.blockIndex] as
|
||||
| ChoiceInputBlock
|
||||
| undefined
|
||||
)?.options?.isMultipleChoice
|
||||
const onDrag = (position: NodePosition) => {
|
||||
if (!onMouseDown) return
|
||||
|
@ -26,6 +26,7 @@ import React, { useEffect, useRef, useState } from 'react'
|
||||
import { ItemNode } from './ItemNode'
|
||||
import { SourceEndpoint } from '../../Endpoints'
|
||||
import { PlaceholderNode } from '../PlaceholderNode'
|
||||
import { isDefined } from 'utils'
|
||||
|
||||
type Props = {
|
||||
block: BlockWithItems
|
||||
@ -46,7 +47,8 @@ export const ItemNodesList = ({
|
||||
draggedItem !== undefined && block.items[0].type === draggedItem.type
|
||||
|
||||
const isLastBlock =
|
||||
typebot?.groups[groupIndex].blocks[blockIndex + 1] === undefined
|
||||
isDefined(typebot) &&
|
||||
typebot.groups[groupIndex].blocks[blockIndex + 1] === undefined
|
||||
|
||||
const [position, setPosition] = useState({
|
||||
x: 0,
|
||||
|
Reference in New Issue
Block a user