| Dixsie Wolmers | b53e086 | 2020-09-08 14:13:38 -0500 | [diff] [blame] | 1 | const TableRowExpandMixin = { |
| 2 | data() { | ||||
| 3 | return { | ||||
| 4 | expandRowLabel: this.$t('global.table.expandTableRow') | ||||
| 5 | }; | ||||
| 6 | }, | ||||
| 7 | methods: { | ||||
| 8 | toggleRowDetails(row) { | ||||
| 9 | row.toggleDetails(); | ||||
| 10 | row.detailsShowing | ||||
| 11 | ? (this.expandRowLabel = this.$t('global.table.expandTableRow')) | ||||
| 12 | : (this.expandRowLabel = this.$t('global.table.collapseTableRow')); | ||||
| 13 | } | ||||
| 14 | } | ||||
| 15 | }; | ||||
| 16 | |||||
| 17 | export default TableRowExpandMixin; | ||||