Skip to content

Commit 5279445

Browse files
authored
missing html closing elements (#284)
1 parent 3c5eddc commit 5279445

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
99
### Fixed
1010
- Can add dataset to spaces - fixed error when no spaces would load. [#274](https://github.com/clowder-framework/clowder/issues/274)
1111
- Typos "success" when returning status from API and "occurred" when logging to console.
12+
- If a dataset had multiple folders the layout would be wrong.
1213

1314
### Added
1415
- Adding mime type for geojson

app/views/folders/listitem.scala.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,9 @@
55
<div class="panel-body">
66
<div class="row">
77
<div class="col-md-2 col-sm-2 col-lg-2">
8-
9-
<a href="javascript:updatePageAndFolder(0, '@folder.id.stringify')">
10-
<span class="bigicon glyphicon glyphicon-folder-close"></span>
11-
</a>
12-
8+
<a href="javascript:updatePageAndFolder(0, '@folder.id.stringify')">
9+
<span class="bigicon glyphicon glyphicon-folder-close"></span>
10+
</a>
1311
</div>
1412
<div class="col-md-10 col-sm-10 col-lg-10">
1513
<div id="[email protected]">
@@ -59,6 +57,8 @@ <h3 id="[email protected]" class="hiddencomplete">
5957
</div>
6058
</li>
6159
}
60+
</ul>
61+
</div>
6262
</div>
6363
</div>
6464
</div>
@@ -80,4 +80,4 @@ <h3 id="[email protected]" class="hiddencomplete">
8080
}
8181
}
8282
});
83-
</script>
83+
</script>

0 commit comments

Comments
 (0)