Class levels now recompute properly

This commit is contained in:
Thaum Rystra
2020-05-16 22:51:17 +02:00
parent 5c0a2a4d6c
commit ca5ded7ded
6 changed files with 52 additions and 17 deletions

View File

@@ -20,23 +20,14 @@
@change="(value, ack) => $emit('change', {path: ['name'], value, ack})"
/>
<text-field
label="Variable name"
label="Class variable name"
:value="model.variableName"
style="flex-basis: 300px;"
hint="Use this name in formulae to reference this class"
hint="This should be the same for each level in a class"
:error-messages="errors.variableName"
:debounce-time="debounceTime"
@change="(value, ack) => $emit('change', {path: ['variableName'], value, ack})"
/>
<text-field
label="Base Class Variable name"
:value="model.baseClass"
style="flex-basis: 300px;"
hint="This is the name of the class this class level belongs to"
:error-messages="errors.baseClass"
:debounce-time="debounceTime"
@change="(value, ack) => $emit('change', {path: ['baseClass'], value, ack})"
/>
</div>
</div>
</template>