2
0
mirror of https://github.com/inventree/inventree-app.git synced 2025-06-12 18:25:26 +00:00
This commit is contained in:
Oliver Walters
2021-05-22 21:13:42 +10:00
parent a7d855defe
commit a415a2cd99
5 changed files with 9 additions and 7 deletions

View File

@ -82,9 +82,6 @@ class ImagePickerField extends FormField<File> {
],
),
);
return ListTile(
title: Text(L10().selectImage),
);
}
);
}

View File

@ -55,7 +55,7 @@ class _StockItemTestResultDisplayState extends RefreshableState<StockItemTestRes
);
showSnackIcon(
success ? "Test result uploaded" : "Could not upload test result",
success ? L10().testResultUploadPass : L10().testResultUploadFail,
success: success
);
@ -70,7 +70,7 @@ class _StockItemTestResultDisplayState extends RefreshableState<StockItemTestRes
String _notes;
File _attachment;
showFormDialog("Add Test Data",
showFormDialog(L10().testResultAdd,
key: _addResultKey,
callback: () {
uploadTestResult(_name, _result, _value, _notes, _attachment);