Skip to content

Commit

Permalink
- Fix lgtm issues and Toni review issues
Browse files Browse the repository at this point in the history
  • Loading branch information
afabiani committed Mar 24, 2020
1 parent dc478dd commit 27a5ad0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion geonode/static/geonode/js/jszip/preprocess.js
Expand Up @@ -237,7 +237,7 @@ DBFParser.prototype.parse = function(arrayBuffer,src,response,encoding) {
count = 0,
index = 0,
z = 0,
sum = (responseHeader.length+1)/32;
/* sum = (responseHeader.length+1)/32 */;

while(responseHeader.length > 0) {
while(count < 10) {
Expand Down
2 changes: 1 addition & 1 deletion geonode/templates/search/_group_snippet.html
Expand Up @@ -3,7 +3,7 @@
<article ng-repeat="group in results" resource_id="{{ group.id }}" ng-cloak class="ng-cloak">
<div class="col-xs-12 item-container">
<div class="col-xs-4">
<img class="img-responsive" src="{{ group.group_profile.logo_url }}" alt="{{ group.group_profile.title }}">
<img class="img-responsive" ng-src="{{ group.group_profile.logo_url }}" alt="{{ group.group_profile.title }}">
</div>
<div class="col-xs-8 item-details">
<h4><a href="{{ group.group_profile.detail_url }}">{{ group.group_profile.title }}</a></h4>
Expand Down

0 comments on commit 27a5ad0

Please sign in to comment.