Skip to content

Commit 49f2f11

Browse files
committed
Fixed issue with viewing already created form fields for an event
1 parent 211ab40 commit 49f2f11

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,21 @@ All notable changes to this project will be documented in this file.
33
Adheres to [Semantic Versioning](http://semver.org/).
44

55
---
6-
## 4.4.2 (TBD)
6+
## 4.4.3 (TBD)
77

88
* TBD
99

1010
##### Features
1111

1212
##### Bug Fixes
1313

14+
## [4.4.2](https://github.com/ngageoint/mage-server/releases/tag/v4.4.2) (01-27-2017)
15+
16+
##### Features
17+
18+
##### Bug Fixes
19+
* Fixed issue with viewing already created form fields for an event
20+
1421
## [4.4.1](https://github.com/ngageoint/mage-server/releases/tag/v4.4.1) (01-26-2017)
1522

1623
##### Features

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "MAGE",
3-
"version": "4.4.0",
3+
"version": "4.4.2",
44
"description": "Geospatial situation awareness application",
55
"keywords": [
66
"NGA",

public/app/admin/events/event.edit.form.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
<div class="col-sm-12">
3939
<div class="admin-table admin-table-content">
4040
<uib-accordion close-others="accordion.oneAtATime">
41-
<uib-accordion-group ng-repeat="field in event.form.fields | filter:{archived: '!true'} | orderBy: 'id'">
41+
<div uib-accordion-group class="panel-default" ng-repeat="field in event.form.fields | filter:{archived: '!true'} | orderBy: 'id'">
4242
<uib-accordion-heading>
4343
{{field.title}}
4444
<i class="pull-right fa fa-arrow-up" ng-if="!$first && canMoveField(field)" ng-click="moveFieldUp($event, field)"></i>
@@ -165,7 +165,7 @@
165165
</form>
166166

167167
</div>
168-
</uib-accordion-group>
168+
</div>
169169
</uib-accordion>
170170

171171
<div class="row top-gap-l">

0 commit comments

Comments
 (0)