Skip to content

Commit

Permalink
fix(list-view): disable double click in manipulations column
Browse files Browse the repository at this point in the history
  • Loading branch information
ElonH committed Jun 13, 2020
1 parent 2ea540e commit 0e0d825
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -40,7 +40,7 @@ import { ClipboardService } from '../../clipboard/clipboard.service';
<td (dblclick)="$event.stopPropagation()" (click)="toggle(idx); $event.preventDefault()">
<nb-checkbox [(checked)]="row.check" (checkedChange)="onToggle()"> </nb-checkbox>
</td>
<td (click)="toggle(idx)">
<td (click)="toggle(idx)" (dblclick)="$event.stopPropagation()">
<nb-icon
*ngIf="row.ManipulateIcon"
class="manipulation"
Expand Down

0 comments on commit 0e0d825

Please sign in to comment.