Hello. When I’m trying to drag-and-drop the first row in Atlaskit Dynamic Table, something just canceling drag event in Jira Cloud instance. In console I have warning:
WARN: ‘triggerPrivacyPolicySafeEvent’ has been deprecated
For some reason it’s happening just with the first row, other rows have no such issue(and no warning message). When I’m testing this component outside of Jira Cloud instance, it works nice without any issue.
The component is really small and basic:
import React from 'react'
import ReactDOM from 'react-dom'
import DynamicTable from '@atlaskit/dynamic-table'
ReactDOM.render(
<DynamicTable
head={{
cells: [
{
key: 'fieldTitle',
content: 'Field Title',
width: 150
}
]
}}
rows={[{
key: '1',
cells: [
{
key: '1-1',
content: 1
}
]
},
{
key: '2',
cells: [
{
key: '2-1',
content: 2
}
]
},
{
key: '3',
cells: [
{
key: '3-1',
content: 3
}
]
}
]}
isRankable />,
document.getElementById('init')
)
Unfortunately I cannot find something, that could help. Appreciate any suggestions and ideas.