| Total Complexity | 2 |
| Complexity/F | 2 |
| Lines of Code | 9 |
| Function Count | 1 |
| Duplicated Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | export default { |
||
| 2 | methods: { |
||
| 3 | confirmDeletingItem: function (id, row_id) { |
||
| 4 | if (confirm('Are you sure?')) { |
||
| 5 | document.getElementById(row_id + id).submit(); |
||
| 6 | } |
||
| 7 | } |
||
| 8 | } |
||
| 9 | } |