Lines Matching full:ntp
127 value="ntp"
130 NTP
136 label-for="input-ntp-1"
140 id="input-ntp-1"
141 v-model="form.ntp.firstAddress"
142 :state="getValidationState(v$.form.ntp.firstAddress)"
145 @blur="v$.form.ntp.firstAddress.$touch()"
148 <div v-if="v$.form.ntp.firstAddress.required.$invalid">
158 label-for="input-ntp-2"
162 id="input-ntp-2"
163 v-model="form.ntp.secondAddress"
173 label-for="input-ntp-3"
177 id="input-ntp-3"
178 v-model="form.ntp.thirdAddress"
247 ntp: { firstAddress: '', secondAddress: '', thirdAddress: '' },
269 ntp: {
272 return this.form.configurationSelected === 'ntp';
285 return this.form.configurationSelected === 'ntp';
334 ? 'ntp'
337 this.form.ntp.firstAddress = '',
338 this.form.ntp.secondAddress = '',
339 this.form.ntp.thirdAddress = '',
348 let isNTPEnabled = this.form.configurationSelected === 'ntp';
369 this.form.ntp.firstAddress,
370 this.form.ntp.secondAddress,
371 this.form.ntp.thirdAddress,
375 // per Redfish spec there should be no empty strings or null on the ntp array.
393 // to avoid refreshing after delay when updating NTP
394 if (!this.form.ntp.secondAddress && this.form.ntp.thirdAddres) {
395 this.form.ntp.secondAddress = this.form.ntp.thirdAddres;
396 this.form.ntp.thirdAddress = '';