-
-
{{getName}}
+
+
+
diff --git a/rpg-docs/client/views/character/proficiencies/proficiencyViewList/proficiencyViewList.html b/rpg-docs/client/views/character/proficiencies/proficiencyViewList/proficiencyViewList.html
index 1a54310c..b4a08c23 100644
--- a/rpg-docs/client/views/character/proficiencies/proficiencyViewList/proficiencyViewList.html
+++ b/rpg-docs/client/views/character/proficiencies/proficiencyViewList/proficiencyViewList.html
@@ -2,7 +2,7 @@
{{#if proficiencies.count}}
-
Proficiencies
+ Proficiencies
{{#each proficiencies}}
{{> proficiencyView}}
{{/each}}
diff --git a/rpg-docs/client/views/character/stats/skillDialog/skillDialog.js b/rpg-docs/client/views/character/stats/skillDialog/skillDialog.js
index 8976b1aa..c2cbf6fc 100644
--- a/rpg-docs/client/views/character/stats/skillDialog/skillDialog.js
+++ b/rpg-docs/client/views/character/stats/skillDialog/skillDialog.js
@@ -212,7 +212,15 @@ Template.skillDialogView.helpers({
return Characters.findOne(this.charId, {fields:{_id: 1}});
},
sourceName: function(){
- if (this.parent.collection === "Characters") return "inate";
+ if (this.parent.collection === "Characters"){
+ if (this.parent.group === "racial"){
+ return Characters.findOne(this.charId, {fields:{race: 1}}).race || "Race";
+ }
+ if (this.parent.group === "background"){
+ return "Background";
+ }
+ return "Innate";
+ }
return this.getParent().name;
},
operationName: function(){