Skip to content

Commit c56e633

Browse files
committed
Fix default accessory icon
1 parent 49a4b2a commit c56e633

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/accessory/accessory_model.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ class Accessory {
6767
this.isActive = false,
6868
this.isDeployed = false,
6969
LatLng? lastLocation,
70-
String icon = 'mappin',
70+
String icon = 'push_pin',
7171
this.color = Colors.grey,
7272
this.usesDerivation = false,
7373
this.symmetricKey,

lib/item_management/item_file_import.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ class _ItemFileImportState extends State<ItemFileImport> {
139139
color = Color.fromRGBO(red, green, blue, opacity);
140140
}
141141

142-
String icon = 'mappin';
142+
String icon = 'push_pin';
143143
if (AccessoryIconModel.icons.contains(accessoryDTO.icon)) {
144144
icon = accessoryDTO.icon;
145145
}

0 commit comments

Comments
 (0)