[ios] Fix missing distance label in search results

Signed-off-by: Yannik Bloscheck <git@yannikbloscheck.com>
This commit is contained in:
Yannik Bloscheck
2025-07-16 10:19:03 +02:00
parent 6ff4faa156
commit b632aa00e3

View File

@@ -22,6 +22,7 @@
self.locationLabel.text = result.addressText; self.locationLabel.text = result.addressText;
[self.locationLabel sizeToFit]; [self.locationLabel sizeToFit];
self.infoLabel.text = result.infoText; self.infoLabel.text = result.infoText;
self.distanceLabel.text = result.distanceText;
self.distanceLabel.textColor = [UIColor.labelColor colorWithAlphaComponent:0.7]; self.distanceLabel.textColor = [UIColor.labelColor colorWithAlphaComponent:0.7];
self.popularView.hidden = YES; self.popularView.hidden = YES;
self.openLabel.text = result.openStatusText; self.openLabel.text = result.openStatusText;