diff --git a/rpg-docs/client/views/character/features/featureDialog/featureDialog.html b/rpg-docs/client/views/character/features/featureDialog/featureDialog.html
index bf396619..8dbcdc1c 100644
--- a/rpg-docs/client/views/character/features/featureDialog/featureDialog.html
+++ b/rpg-docs/client/views/character/features/featureDialog/featureDialog.html
@@ -4,27 +4,30 @@
{{name}}
-
-
-
- Delete Feature
- Cancel
-
-
+
+
-
Effects
- {{#each effects}}
- {{>effectEdit}}
- {{/each}}
-
-
Add Effect
+
+
+
Effects
+ {{#each effects}}
+ {{>effectEdit}}
+ {{/each}}
+
diff --git a/rpg-docs/client/views/character/features/featureDialog/featureDialog.js b/rpg-docs/client/views/character/features/featureDialog/featureDialog.js
index e6be56e6..f6fa1d92 100644
--- a/rpg-docs/client/views/character/features/featureDialog/featureDialog.js
+++ b/rpg-docs/client/views/character/features/featureDialog/featureDialog.js
@@ -4,6 +4,16 @@ Template.featureDialog.rendered = function(){
var feature = Features.findOne(Template.currentData().featureId, {fields: {name: 1}});
if(feature && feature.name) Session.set("global.ui.dialogHeader", feature.name);
})
+ //update all autogrows after they've been filled
+ var pata = this.$("paper-autogrow-textarea");
+ pata.each(function(index, el){
+ el.update($(el).children().get(0));
+ })
+ //update all input fields as well
+ var input = this.$("paper-input");
+ input.each(function(index, el){
+ el.valueChanged();
+ })
//after the dialog is built, open it
if (!this.alreadyRendered){
Session.set("global.ui.detailShow", true);
diff --git a/rpg-docs/client/views/character/features/featureDialog/featuresDialog.css b/rpg-docs/client/views/character/features/featureDialog/featuresDialog.css
index ea3c7112..2d1c82d4 100644
--- a/rpg-docs/client/views/character/features/featureDialog/featuresDialog.css
+++ b/rpg-docs/client/views/character/features/featureDialog/featuresDialog.css
@@ -9,4 +9,5 @@ body /deep/ .featureDialogWidth {
#addEffectButton {
background: #d23f31;
color: #fff;
+ margin-top: 16px;
}