diff --git a/src/app/shared/form/chips/chips.component.ts b/src/app/shared/form/chips/chips.component.ts index d4b1cbf589..45a6763b8a 100644 --- a/src/app/shared/form/chips/chips.component.ts +++ b/src/app/shared/form/chips/chips.component.ts @@ -85,6 +85,9 @@ export class ChipsComponent implements OnChanges { } showTooltip(tooltip: NgbTooltip, index, field?) { tooltip.close(); + if (this.isDragging.value) { + return; + } const chipsItem = this.chips.getChipByIndex(index); const textToDisplay: string[] = []; if (!chipsItem.editMode && this.dragged === -1) {