diff --git a/rpg-docs/Routes/Routes.js b/rpg-docs/Routes/Routes.js index 97038671..6a2a4053 100644 --- a/rpg-docs/Routes/Routes.js +++ b/rpg-docs/Routes/Routes.js @@ -25,7 +25,7 @@ Router.map( function () { ]; }, data: function() { - var data = Characters.findOne({_id: this.params._id}, {fields: {_id: 1}}); + var data = Characters.findOne({_id: this.params._id}, {fields: {_id: 1, name: 1}}); return data; } }); diff --git a/rpg-docs/client/views/character/characterSheet.html b/rpg-docs/client/views/character/characterSheet.html index 9ff1d941..845d8470 100644 --- a/rpg-docs/client/views/character/characterSheet.html +++ b/rpg-docs/client/views/character/characterSheet.html @@ -3,7 +3,7 @@
- Name + {{name}}
@@ -23,7 +23,7 @@ {{> features}} {{> inventory}} {{> spells}} - Persona Under Construction + {{> persona}} Journal Under Construction