fix: Remove overflow string in label delete confirm button (#7386)
Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com>
This commit is contained in:
@@ -127,14 +127,10 @@ export default {
|
||||
}),
|
||||
// Delete Modal
|
||||
deleteConfirmText() {
|
||||
return `${this.$t('LABEL_MGMT.DELETE.CONFIRM.YES')} ${
|
||||
this.selectedResponse.title
|
||||
}`;
|
||||
return this.$t('LABEL_MGMT.DELETE.CONFIRM.YES');
|
||||
},
|
||||
deleteRejectText() {
|
||||
return `${this.$t('LABEL_MGMT.DELETE.CONFIRM.NO')} ${
|
||||
this.selectedResponse.title
|
||||
}`;
|
||||
return this.$t('LABEL_MGMT.DELETE.CONFIRM.NO');
|
||||
},
|
||||
deleteMessage() {
|
||||
return ` ${this.selectedResponse.title}?`;
|
||||
|
||||
Reference in New Issue
Block a user