@izumisy-tailor/tailor-data-viewer 0.1.45 → 0.1.46

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@izumisy-tailor/tailor-data-viewer",
3
3
  "private": false,
4
- "version": "0.1.45",
4
+ "version": "0.1.46",
5
5
  "type": "module",
6
6
  "description": "Flexible data viewer component for Tailor Platform",
7
7
  "files": [
@@ -464,7 +464,11 @@ export function DataTable(props: DataTableProps = {}) {
464
464
  ? relationData?.total
465
465
  : undefined;
466
466
  return (
467
- <TableCell key={relation.fieldName} className="p-1">
467
+ <TableCell
468
+ key={relation.fieldName}
469
+ className="p-1"
470
+ onClick={(e) => e.stopPropagation()}
471
+ >
468
472
  <button
469
473
  type="button"
470
474
  onClick={() => toggleCell(rowId, relation, row)}