 
 I'm working on a sheet worker and am using newValue and previousValue to help simplify some work and I found that when I initialize a repeating row and change the value of the field being watched, the newValue is correct (meaning, the value I entered in the blank field matches newValue), but previousValue is incorrect (meaning, it has the same value I entered in the blank field).  The html field being watched:  <input class="sheet-armorWeight" type="number" name="attr_ArmorTypeWeight" title="@{repeating_armor_$#_ArmorTypeWeight}" />  And here's the console log:  Made it to Armor Type Weight Change VM17:430 
New Value: 15 VM17:431 
Previous Value: 15  This this be happening?  It seems odd that it should be.  I suppose I could set a default value, but I'd rather not do that if I don't have to... 
 
				
			 
 
 
