Commit 5e636fa2 authored by Oswaldo Ferreira's avatar Oswaldo Ferreira

Use "!==" instead "!="

parent 5188058c
...@@ -46,7 +46,7 @@ gl.issueBoards.RemoveIssueBtn = Vue.extend({ ...@@ -46,7 +46,7 @@ gl.issueBoards.RemoveIssueBtn = Vue.extend({
let assigneeIds = issue.assignees let assigneeIds = issue.assignees
.map(assignee => assignee.id) .map(assignee => assignee.id)
.filter(id => id != board.assignee_id); .filter(id => id !== board.assignee_id);
if (assigneeIds.length === 0) { if (assigneeIds.length === 0) {
assigneeIds = ['0']; assigneeIds = ['0'];
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment