mirror of
https://github.com/inventree/inventree-app.git
synced 2025-05-05 08:48:55 +00:00
Tweaks
This commit is contained in:
parent
a7d855defe
commit
a415a2cd99
@ -1,6 +1,11 @@
|
||||
## InvenTree App Release Notes
|
||||
---
|
||||
|
||||
### 0.1.6 - May 2021
|
||||
---
|
||||
|
||||
|
||||
|
||||
### 0.1.5 - May 2021
|
||||
---
|
||||
|
||||
|
@ -62,7 +62,7 @@ class InvenTreeFileService extends FileService {
|
||||
class InvenTreeAPI {
|
||||
|
||||
// Minimum required API version for server
|
||||
static const _minApiVersion = 2;
|
||||
static const _minApiVersion = 3;
|
||||
|
||||
// Endpoint for requesting an API token
|
||||
static const _URL_GET_TOKEN = "user/token/";
|
||||
|
2
lib/l10n
2
lib/l10n
@ -1 +1 @@
|
||||
Subproject commit 8d5f69f355632939c9b6550625066ca779930bfe
|
||||
Subproject commit 55e409cf7d1200c0e0a30af96ceabd9e67947a97
|
@ -82,9 +82,6 @@ class ImagePickerField extends FormField<File> {
|
||||
],
|
||||
),
|
||||
);
|
||||
return ListTile(
|
||||
title: Text(L10().selectImage),
|
||||
);
|
||||
}
|
||||
);
|
||||
}
|
||||
|
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user