Browse Source

Fixed empty photos in inline results

master
Igor Zhukov 9 years ago
parent
commit
9a423eb6f4
  1. 2
      app/partials/desktop/inline_results.html

2
app/partials/desktop/inline_results.html

@ -43,7 +43,7 @@
/> />
</div> </div>
<div ng-switch-default class="inline_result_photo_http"> <div ng-switch-default class="inline_result_photo_http">
<img ng-switch-default ng-if="result.thumbUrl !== undefined" class="inline_result_photo_image" width="{{result.thumbW}}" height="{{result.thumbH}}" ng-src="{{result.thumbUrl}}" /> <img ng-if="result.thumbUrl !== undefined" class="inline_result_photo_image" width="{{result.thumbW}}" height="{{result.thumbH}}" ng-src="{{result.thumbUrl}}" />
</div> </div>
</a> </a>

Loading…
Cancel
Save