Fixed property adjustments on the stats page

This commit is contained in:
Thaum Rystra
2020-03-04 09:56:06 +02:00
parent f3d86ef274
commit dfa3b057b0
7 changed files with 46 additions and 39 deletions

View File

@@ -61,7 +61,7 @@
clearable
:value="model.baseProficiency"
:error-messages="errors.baseProficiency"
@change="(value, ack) => $emit('change', {path: ['baseProficiency'], value, ack})"
@change="(value, ack) => {$emit('change', {path: ['baseProficiency'], value: value || 0, ack}); log({value, ack})}"
/>
</div>
</form-section>
@@ -114,6 +114,9 @@
},
]
};},
methods: {
log: console.log,
},
};
</script>