Skip to content

Commit

Permalink
Fix default accessory icon
Browse files Browse the repository at this point in the history
  • Loading branch information
wangwillian0 committed Aug 31, 2023
1 parent 49a4b2a commit c56e633
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/accessory/accessory_model.dart
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class Accessory {
this.isActive = false,
this.isDeployed = false,
LatLng? lastLocation,
String icon = 'mappin',
String icon = 'push_pin',
this.color = Colors.grey,
this.usesDerivation = false,
this.symmetricKey,
Expand Down
2 changes: 1 addition & 1 deletion lib/item_management/item_file_import.dart
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ class _ItemFileImportState extends State<ItemFileImport> {
color = Color.fromRGBO(red, green, blue, opacity);
}

String icon = 'mappin';
String icon = 'push_pin';
if (AccessoryIconModel.icons.contains(accessoryDTO.icon)) {
icon = accessoryDTO.icon;
}
Expand Down

0 comments on commit c56e633

Please sign in to comment.