mirror of
https://github.com/inventree/inventree-app.git
synced 2025-06-12 18:25:26 +00:00
Update notes for building under iOS (#238)
This commit is contained in:
@ -182,10 +182,10 @@ class InvenTreeModel {
|
||||
name = name.substring(3);
|
||||
}
|
||||
|
||||
int? iconHex = fontAwesomeIconMap[name];
|
||||
int iconHex = fontAwesomeIconMap[name] ?? 0;
|
||||
|
||||
// No match for the icon name
|
||||
if (iconHex == null) {
|
||||
if (iconHex == 0) {
|
||||
return null;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user