Merge branch 'master' of github-DDS:dod-ccpo/atst into financial.py-rm-unused-property

This commit is contained in:
Jay Newlin (PW) 2018-12-03 16:17:49 -05:00
commit 021d82a981
2 changed files with 2 additions and 2 deletions

View File

@ -60,7 +60,7 @@ export default {
validationError: 'Optional: Please enter up to 10 digits'
},
dodId: {
mask: createNumberMask({ prefix: '', allowDecimal: false, includeThousandsSeparator: false }),
mask: createNumberMask({ prefix: '', allowDecimal: false, allowLeadingZeroes: true, includeThousandsSeparator: false }),
match: /^\d{10}$/,
unmask: [],
validationError: 'Please enter a 10-digit DoD ID number'

View File

@ -12,6 +12,7 @@
<style>
html, body {
height: 100%;
margin: 0px;
}
.main p {
@ -46,7 +47,6 @@
/* Wrapper */
.main {
padding: 20px;
width: 100%;
height: 100%;
background: url(static/img/cloud_background.jpg);