Merge branch '#48445-Issue-card-in-board-view-is-too-sensitive-to-drag-event' into 'master'

Fix link handling for issue cards.

Closes #48445

See merge request gitlab-org/gitlab-ce!21910
This commit is contained in:
Phil Hughes 2018-10-01 12:53:35 +00:00
commit 4d7705ce92
2 changed files with 7 additions and 1 deletions

View File

@ -149,7 +149,8 @@
<a
:href="issue.path"
:title="issue.title"
class="js-no-trigger">{{ issue.title }}</a>
class="js-no-trigger"
@mousemove.stop>{{ issue.title }}</a>
<span
v-if="issueId"
class="board-card-number append-right-5"

View File

@ -0,0 +1,5 @@
---
title: Fix link handling for issue cards to avoid too sensitive drag events.
merge_request: 21910
author: Johann Hubert Sonntagbauer
type: fixed