Skip to content

Commit 770861f

Browse files
committed
Fix pc and npc notes tab fields.
1 parent 7e0a04a commit 770861f

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Diff for: model/tab/npc-note.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<div class="flex column full">
22
<div class="flex column heavy-border wrapper grow">
33
<b class="title">{{localize "HEADER.NOTES"}}</b>
4-
{{editor content=data.note target="data.note" button=true owner=owner editable=true}}
4+
{{editor content=data.data.note target="data.note" button=true owner=owner editable=true}}
55
</div>
66
</div>

Diff for: model/tab/player-note.html

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,28 +4,28 @@
44
<div class="flex row grow wrap margin">
55
<div class="motivation">
66
<b>{{localize "BIO.MOTIVATION"}}</b>
7-
<input name="data.bio.motivation" type="text" value="{{data.bio.motivation}}"/>
7+
<input name="data.bio.motivation" type="text" value="{{data.data.bio.motivation}}"/>
88
</div>
99
<div class="trauma">
1010
<b>{{localize "BIO.TRAUMA"}}</b>
11-
<input name="data.bio.trauma" type="text" value="{{data.bio.trauma}}"/>
11+
<input name="data.bio.trauma" type="text" value="{{data.data.bio.trauma}}"/>
1212
</div>
1313
<div class="dark-secret">
1414
<b>{{localize "BIO.DARK_SECRET"}}</b>
15-
<input name="data.bio.darkSecret" type="text" value="{{data.bio.darkSecret}}"/>
15+
<input name="data.bio.darkSecret" type="text" value="{{data.data.data.bio.darkSecret}}"/>
1616
</div>
1717
<div class="advantage">
1818
<b>{{localize "ADVANTAGE"}}</b>
1919
<input name="data.advantage" type="text" value="{{data.advantage}}"/>
2020
</div>
2121
<div class="memento">
2222
<b>{{localize "MEMENTO"}}</b>
23-
<input name="data.memento" type="text" value="{{data.memento}}"/>
23+
<input name="data.memento" type="text" value="{{data.data.memento}}"/>
2424
</div>
2525
</div>
2626
</div>
2727
<div class="flex column heavy-border wrapper grow">
2828
<b class="title">{{localize "HEADER.NOTES"}}</b>
29-
{{editor content=data.note target="data.note" button=true owner=owner editable=true}}
29+
{{editor content=data.data.note target="data.note" button=true owner=owner editable=true}}
3030
</div>
3131
</div>

0 commit comments

Comments
 (0)