Update: Vue 2 to Vue 3 with Typescript, node 14 to node 22, Jenkinsfile, Dockerfile, vapor.yml (Post PROD Deployment)

This commit is contained in:
Dillon Ngo
2026-06-23 11:42:44 +08:00
parent b20a4dc640
commit ac35584584
@@ -13,7 +13,7 @@
<div class="col">
<validation-wrapper-component :validator="v$.amount_to_edit">
<label class="muted">Booking Amount ({{data.fixed_currency.short_code}})</label>
<input type="text" class="form-control" v-model="amount_to_edit" v-money3="money">
<input type="text" class="form-control" v-model.lazy="amount_to_edit" v-money3="money">
</validation-wrapper-component>
</div>
</div>
@@ -84,6 +84,7 @@ const submitForm = async () => {
successHandler: () => {
closeModal();
formHandler();
queueStore.reloadList({ name: "bookingDetailSection" });
}
});
};