Skip to content

Commit

Permalink
Merge pull request #13591 from eGellman89/master
Browse files Browse the repository at this point in the history
Table Top Defined - Bug Fix
  • Loading branch information
kfroll20 authored Dec 10, 2024
2 parents f6aa3c7 + 4d02e7f commit ce0f4c5
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Table Top Defined/Table_Top_Defined.html
Original file line number Diff line number Diff line change
Expand Up @@ -2791,7 +2791,7 @@ <h3 style="color:white">Spell Casting</h3>
<div class="Header-I">
<div>
<h3>Inventory</h3>Gold: <input style="width:104px" type="number" step="any" name="attr_GP"/><br>
Total Carry Weight:<input title="@{totalweight}" class="standard-input" name="attr_totalweight" type="text" readonly/>
Total Carry Weight:<input title="@{totalweight}" step="any" class="standard-input" name="attr_totalweight" type="text" readonly/>
</div>
</div>
<div class="Column-I">
Expand All @@ -2811,10 +2811,10 @@ <h3>Inventory</h3>Gold: <input style="width:104px" type="number" step="any" name
<div>Quantity: <input type="number" name="attr_mainquantity"/></div>
</div>
<div class="piece-weight">
<div>Unit Weight: <input type="number" name="attr_mainpieceweight"/></div>
<div>Unit Weight: <input step="any" type="number" name="attr_mainpieceweight"/></div>
</div>
<div class="total-weight">
<div>Total Weight: <input type="text" name="attr_maintotalweight" readonly/></div>
<div>Total Weight: <input step="any" type="text" name="attr_maintotalweight" readonly/></div>
</div>
</div>
</fieldset>
Expand All @@ -2834,7 +2834,7 @@ <h3>Inventory</h3>Gold: <input style="width:104px" type="number" step="any" name
Number of Items in location/bag:<br><input type="text" readonly name="attr_locationItemCount"/>
</div>
<div class="piece-weight">
Location/Bag Total Weight:<br><input type="text" readonly name="attr_locationTotalWeight">
Location/Bag Total Weight:<br><input step="any" type="text" readonly name="attr_locationTotalWeight">
</div>
</div>
</fieldset>
Expand All @@ -2848,7 +2848,7 @@ <h3>Inventory</h3>Gold: <input style="width:104px" type="number" step="any" name
<div class="sheet-profitloss">
<div class="row-header">
Profit and Loss Sheet<br>
Total Gold:<input title="TotalGold" class="standard-input" name="attr_plTotalGold" type="text" readonly/>
Total Gold:<input title="TotalGold" step="any" class="standard-input" name="attr_plTotalGold" type="text" readonly/>
</div>
<div class="sheet-repeating-fields">
<fieldset class="repeating_profitloss">
Expand All @@ -2857,10 +2857,10 @@ <h3>Inventory</h3>Gold: <input style="width:104px" type="number" step="any" name
<textarea title="Memo" name="attr_plMemo" placeholder="Memo..."></textarea>
</div>
<div class="name">
Debits: <input title="Debits" type="number" name="attr_plDebits"/>
Debits: <input title="Debits" step="any" type="number" name="attr_plDebits"/>
</div>
<div class="quantity">
Credits: <input title="Credits" type="number" name="attr_plCredits"/>
Credits: <input title="Credits" step="any" type="number" name="attr_plCredits"/>
</div>
<div class="piece-weight">
Running Total: <input title="Running Total" type="number" name="attr_plRunningTotal" readonly/>
Expand Down

0 comments on commit ce0f4c5

Please sign in to comment.