Skip to content

Commit

Permalink
fix: Change name of 'Personal Info' tab to just 'Info'
Browse files Browse the repository at this point in the history
  • Loading branch information
xdy committed Aug 5, 2020
1 parent 27fcbca commit f75ca78
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/module/templates.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default function ():Promise<void> {
"systems/twodsix/templates/actors/actor-sheet.html",
"systems/twodsix/templates/actors/parts/actor-skills.html",
"systems/twodsix/templates/actors/parts/actor-items.html",
"systems/twodsix/templates/actors/parts/actor-personal-info.html",
"systems/twodsix/templates/actors/parts/actor-info.html",
"systems/twodsix/templates/items/item-sheet.html"
];

Expand Down
6 changes: 3 additions & 3 deletions static/templates/actors/actor-sheet.html
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
<a class="item" data-tab="ucf">UCF</a>
<a class="item" data-tab="skills">Skills</a>
<a class="item" data-tab="items">Inventory</a>
<a class="item" data-tab="personal-info">Personal info</a>
<a class="item" data-tab="info">Info</a>
</nav>
</div>

Expand Down Expand Up @@ -97,8 +97,8 @@
</div>

{{!-- Personal Info Tab --}}
<div class="tab personal-info" data-group="primary" data-tab="personal-info">
{{> "systems/twodsix/templates/actors/parts/actor-personal-info.html"}}
<div class="tab info" data-group="primary" data-tab="info">
{{> "systems/twodsix/templates/actors/parts/actor-info.html"}}
</div>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<div class="tab personal-info" data-group="primary" data-tab="personal-info">
<div class="tab info" data-group="primary" data-tab="-info">
{{editor content=data.details.description target="data.details.description" button=true owner=owner
editable=editable}}
</div>
</div>

0 comments on commit f75ca78

Please sign in to comment.