We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5bc1f2 commit fef1693Copy full SHA for fef1693
src/components/databrowser/components/display/display-list.tsx
@@ -104,8 +104,15 @@ export const ListItems = ({
104
</td>
105
)}
106
{type !== "stream" && (
107
- <td width={20} className="px-3">
+ <td
108
+ width={20}
109
+ className="px-3"
110
+ onClick={(e) => {
111
+ e.stopPropagation()
112
+ }}
113
+ >
114
<DeleteAlertDialog
115
+ deletionType="item"
116
onDeleteConfirm={(e) => {
117
e.stopPropagation()
118
editItem({
0 commit comments