fix(minifigure): fixed double click issue, nil image and bulk add.

This commit is contained in:
2025-10-09 16:28:22 +02:00
parent 0ec1d37c36
commit 2ed60e3fe3
4 changed files with 38 additions and 11 deletions
+1 -1
View File
@@ -418,7 +418,7 @@ class IndividualMinifigure(RebrickableMinifigure):
def short(self, /, *, from_download: bool = False) -> dict[str, Any]:
return {
'download': from_download,
'image': self.fields.image if self.fields.image else '',
'image': self.url_for_image(),
'name': self.fields.name,
'figure': self.fields.figure,
}