chore: Account auto resolution time validation (#3651)

This commit is contained in:
Shivam Chahar
2022-01-19 13:16:21 +05:30
committed by GitHub
parent 1b36143d27
commit 9617137688
17 changed files with 18 additions and 16 deletions

View File

@@ -116,7 +116,7 @@
</template>
<script>
import { required, minValue } from 'vuelidate/lib/validators';
import { required, minValue, maxValue } from 'vuelidate/lib/validators';
import { mapGetters } from 'vuex';
import alertMixin from 'shared/mixins/alertMixin';
import configMixin from 'shared/mixins/configMixin';
@@ -146,6 +146,7 @@ export default {
},
autoResolveDuration: {
minValue: minValue(1),
maxValue: maxValue(999),
},
},
computed: {