Skip to content

Commit

Permalink
added more information to str method to Footprint Mapping model
Browse files Browse the repository at this point in the history
  • Loading branch information
afkiwers committed Feb 1, 2024
1 parent 332d3ec commit 39b29b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inventree_kicad/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class Meta:

def __str__(self):
"""Default name string which is returned when object is called"""
return f"{self.parameter_value} -> {self.kicad_footprint}"
return f"{self.kicad_category}: {self.parameter_value} -> {self.kicad_footprint}"


class ProgressIndicator(models.Model):
Expand Down

0 comments on commit 39b29b8

Please sign in to comment.