Skip to content

Commit

Permalink
Merge branch 'feat/monaco' of https://github.com/firecamp-io/firecamp…
Browse files Browse the repository at this point in the history
…-oss-phase-2 into feat/monaco
  • Loading branch information
Nishchit14 committed Nov 2, 2022
2 parents d0a77d0 + 9fcdd15 commit 2e0ddb9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/ui-kit/src/components/table/table/BasicTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ const BasicTable: FC<any> = ({
);
break;
case 'remove':
return <VscTrash />;
return (<VscTrash />);
default:
return (
<SingleLineEditor
Expand Down
3 changes: 2 additions & 1 deletion packages/ui-kit/src/components/table/table/Table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ const TableDraggableRow: FC<ITableRow> = memo((props) => {
onDrop={(e) => (e.preventDefault(), handleDrop(row.index))}
onDragOver={(e) => e.preventDefault()}
>
<div style={{ display: 'inline-flex' }}>
<div style={{ display: 'flex' }}>
<span
draggable={true}
onDragStart={(e) => {
Expand All @@ -277,6 +277,7 @@ const TableDraggableRow: FC<ITableRow> = memo((props) => {
// else handleDrag(row.index);
handleDrag(row.index);
}}
className="flex"
>
<GrDrag />
</span>
Expand Down

0 comments on commit 2e0ddb9

Please sign in to comment.