diff --git a/js/components/forms/ko_review.js b/js/components/forms/ko_review.js index 3b86390e..c48ecd8f 100644 --- a/js/components/forms/ko_review.js +++ b/js/components/forms/ko_review.js @@ -42,5 +42,11 @@ export default { addLOA: function(event) { this.loas.push(createLOA('')) }, + + removeLOA: function(index) { + if (this.loas.length > 1) { + this.loas.splice(index, 1) + } + }, }, } diff --git a/templates/portfolios/task_orders/review.html b/templates/portfolios/task_orders/review.html index 39fdc45d..a87d06aa 100644 --- a/templates/portfolios/task_orders/review.html +++ b/templates/portfolios/task_orders/review.html @@ -84,6 +84,10 @@ +