summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/boards/components/modal/index.js.es6
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/boards/components/modal/index.js.es6')
-rw-r--r--app/assets/javascripts/boards/components/modal/index.js.es65
1 files changed, 3 insertions, 2 deletions
diff --git a/app/assets/javascripts/boards/components/modal/index.js.es6 b/app/assets/javascripts/boards/components/modal/index.js.es6
index 4536f5cfe6f..612657753d5 100644
--- a/app/assets/javascripts/boards/components/modal/index.js.es6
+++ b/app/assets/javascripts/boards/components/modal/index.js.es6
@@ -9,7 +9,7 @@
gl.issueBoards.IssuesModal = Vue.extend({
props: [
- 'blankStateImage', 'newIssuePath', 'bulkUpdatePath', 'issueLinkBase',
+ 'blankStateImage', 'newIssuePath', 'issueLinkBase',
'rootPath',
],
data() {
@@ -33,6 +33,7 @@
} else if (!this.showAddIssuesModal) {
this.issues = [];
this.selectedIssues = [];
+ this.issuesCount = false;
}
},
},
@@ -101,7 +102,7 @@
<i class="fa fa-spinner fa-spin"></i>
</div>
</section>
- <modal-footer :bulk-update-path="bulkUpdatePath"></modal-footer>
+ <modal-footer></modal-footer>
</div>
</div>
`,