added refreshcomment button

This commit is contained in:
Aqqil Azman
2024-06-06 17:23:53 +08:00
parent f362da8e06
commit f3ab28f6d5
@@ -333,6 +333,7 @@
</div>
</div>
<div class="col-auto" v-if="$store.getters.isAdmin">
<i class="fa fa-refresh pointer" @click="refreshComment(refund.id)"></i>
<span class="btn requestModal no-border" size="large" data-type="chatmodal">
<i class="fa fa-comment-o"></i>
</span>
@@ -456,6 +457,9 @@
clickExpandRefundTransactions(){
this.expandRefundTransactions = !this.expandRefundTransactions;
},
refreshComment(id){
this.submit(this.route('api.transaction.remark.fetch', id), 'post', this.section, false, false)
}
},
mixins: [componentHandler]
}