From 98931085394ca38064a48321a7c85b447f5f02b7 Mon Sep 17 00:00:00 2001 From: Yohann Tilotti <5848945+ytilotti@users.noreply.github.com> Date: Wed, 7 Jul 2021 15:51:23 +0200 Subject: [PATCH] Delete limit 255 description estimate There is a limit on the description of the estimate vue which is not necessary. The field in the database is in TEXT. --- resources/assets/js/views/estimates/ItemSelect.vue | 9 --------- 1 file changed, 9 deletions(-) diff --git a/resources/assets/js/views/estimates/ItemSelect.vue b/resources/assets/js/views/estimates/ItemSelect.vue index 22f2ffb8..7b3f5913 100644 --- a/resources/assets/js/views/estimates/ItemSelect.vue +++ b/resources/assets/js/views/estimates/ItemSelect.vue @@ -104,15 +104,6 @@ export default { loading: false, } }, - validations() { - return { - item: { - description: { - maxLength: maxLength(255), - }, - }, - } - }, computed: { ...mapGetters('item', ['items']), },