2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-05-01 13:06:45 +00:00

Change "Edit/Delete test result" to "Edit/Delete test template" tooltip of (#7625)

the test template list actions.
This commit is contained in:
Miklós Márton 2024-07-12 00:25:32 +02:00 committed by GitHub
parent be2beeca61
commit 5d1f2b3ac0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2951,8 +2951,8 @@ function loadPartTestTemplateTable(table, options) {
if (row.part == part) { if (row.part == part) {
let html = ''; let html = '';
html += makeEditButton('button-test-edit', pk, '{% trans "Edit test result" %}'); html += makeEditButton('button-test-edit', pk, '{% trans "Edit test template" %}');
html += makeDeleteButton('button-test-delete', pk, '{% trans "Delete test result" %}'); html += makeDeleteButton('button-test-delete', pk, '{% trans "Delete test template" %}');
return wrapButtons(html); return wrapButtons(html);
} else { } else {