Skip to content
Snippets Groups Projects
Commit 8df5b369 authored by Phil Hughes's avatar Phil Hughes
Browse files

Fixed bug stopping issue boards cards being dragged

This was caused by the window being zoomed & therefore returning a
non-rounded number. The number now gets rounded to correctly work in the
if statement

Closes #29576
parent 78840333
No related branches found
No related tags found
1 merge request!10139Fixed bug stopping issue boards cards being dragged
Pipeline #
Loading
Loading
@@ -48,7 +48,7 @@ import boardCard from './board_card';
this.list.getIssues(false);
}
 
if (this.scrollHeight() > this.listHeight()) {
if (this.scrollHeight() > Math.ceil(this.listHeight())) {
this.showCount = true;
} else {
this.showCount = false;
Loading
Loading
---
title: Fixed bug in issue boards which stopped cards being able to be dragged
merge_request:
author:
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment