summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Eastwood <contact@ericeastwood.com>2017-06-09 19:29:07 -0500
committerEric Eastwood <contact@ericeastwood.com>2017-06-09 19:31:48 -0500
commit0ab87bf138e9e981af7a9a0f159b18e2001bc2af (patch)
treeca33274fa44c9e87eb8004c688a7a98ad097c099
parentb16730fc8317b282d5dc86dbc8936c74303f5a36 (diff)
downloadgitlab-ce-remove-dead-singular-assignee-code-in-boards.tar.gz
Remove dead singular assignee code in boardsremove-dead-singular-assignee-code-in-boards
Introduced in https://gitlab.com/gitlab-org/gitlab-ce/commit/adc59353fa48c5e433b80efc1698c0b12e121968#852fdbe4145be33eca58d30d8c2f4a6623ef8602_30_30 Only usage removed in https://gitlab.com/gitlab-org/gitlab-ce/commit/de9e559d4495560095adfa03ea6489ea51f6f2f4#e22df3c6b3631af90cde45bbb974ddce72aefab7_21_21
-rw-r--r--app/assets/javascripts/boards/components/board_sidebar.js3
1 files changed, 0 insertions, 3 deletions
diff --git a/app/assets/javascripts/boards/components/board_sidebar.js b/app/assets/javascripts/boards/components/board_sidebar.js
index 386102032cb..c7afd4ead6b 100644
--- a/app/assets/javascripts/boards/components/board_sidebar.js
+++ b/app/assets/javascripts/boards/components/board_sidebar.js
@@ -32,9 +32,6 @@ gl.issueBoards.BoardSidebar = Vue.extend({
showSidebar () {
return Object.keys(this.issue).length;
},
- assigneeId() {
- return this.issue.assignee ? this.issue.assignee.id : 0;
- },
milestoneTitle() {
return this.issue.milestone ? this.issue.milestone.title : 'No Milestone';
}