2
0
mirror of https://github.com/inventree/inventree-app.git synced 2025-04-28 05:26:47 +00:00

Update release notes

This commit is contained in:
Oliver Walters 2022-03-26 19:21:24 +11:00
parent d780a1faa1
commit 6c7b4ea7c1
3 changed files with 7 additions and 3 deletions

View File

@ -63,3 +63,7 @@ linter:
always_specify_types: false
avoid_unnecessary_containers: false
require_trailing_commas: false
eol_at_end_of_file: false

View File

@ -5,6 +5,7 @@
---
- Enables printing of stock item labels
- Allow users to manually delete stock items
### 0.5.6 - January 2022
---

View File

@ -22,7 +22,6 @@ import "package:inventree/l10.dart";
import "package:inventree/helpers.dart";
import "package:inventree/api.dart";
import "package:inventree/api_form.dart";
import 'package:one_context/one_context.dart';
class StockDetailWidget extends StatefulWidget {
@ -842,7 +841,7 @@ class _StockItemDisplayState extends RefreshableState<StockDetailWidget> {
context,
MaterialPageRoute(
builder: (context) => StockItemTestResultsWidget(item))
).then((context) {
).then((ctx) {
refresh(context);
});
}
@ -969,7 +968,7 @@ class _StockItemDisplayState extends RefreshableState<StockDetailWidget> {
Navigator.push(
context,
MaterialPageRoute(builder: (context) => InvenTreeQRView(StockItemScanIntoLocationHandler(item)))
).then((context) {
).then((ctx) {
refresh(context);
});
},