Format code.
This commit is contained in:
parent
9414785917
commit
490219ded6
3 changed files with 11 additions and 8 deletions
|
|
@ -46,7 +46,11 @@
|
||||||
:maxlength="maxLength ? maxLength : '999'"
|
:maxlength="maxLength ? maxLength : '999'"
|
||||||
@focus="$emit('focus', $event.target.value)"
|
@focus="$emit('focus', $event.target.value)"
|
||||||
@keydown="keyDownHandler" />
|
@keydown="keyDownHandler" />
|
||||||
<button v-if="includeSearchIcon" type="submit" aria-label="Search button" @click="focusSearchInput" />
|
<button
|
||||||
|
v-if="includeSearchIcon"
|
||||||
|
type="submit"
|
||||||
|
aria-label="Search button"
|
||||||
|
@click="focusSearchInput" />
|
||||||
<template v-if="includeImageQuestion">
|
<template v-if="includeImageQuestion">
|
||||||
<template v-if="!isDisabled">
|
<template v-if="!isDisabled">
|
||||||
<label class="camera-icon-input" v-show="!isImageProcessing">
|
<label class="camera-icon-input" v-show="!isImageProcessing">
|
||||||
|
|
@ -164,8 +168,9 @@ export default {
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
focusSearchInput() { //Focus cursor in input when search icon is clicked
|
focusSearchInput() {
|
||||||
const field = document.querySelector('input');
|
//Focus cursor in input when search icon is clicked
|
||||||
|
const field = document.querySelector("input");
|
||||||
field.focus();
|
field.focus();
|
||||||
},
|
},
|
||||||
async imageChanged(e) {
|
async imageChanged(e) {
|
||||||
|
|
|
||||||
|
|
@ -9,10 +9,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="row justify-content-center">
|
<div class="row justify-content-center">
|
||||||
<div class="col-md-6 col-xl-4">
|
<div class="col-md-6 col-xl-4">
|
||||||
|
<funnelSubHeader cmsWidgetName="FunnelSubHeaderWidget" class="mt-4" />
|
||||||
<funnelSubHeader
|
|
||||||
cmsWidgetName="FunnelSubHeaderWidget"
|
|
||||||
class="mt-4" />
|
|
||||||
|
|
||||||
<textboxQuestion
|
<textboxQuestion
|
||||||
class="mb-2 mt-5"
|
class="mb-2 mt-5"
|
||||||
|
|
|
||||||
|
|
@ -394,7 +394,8 @@ const routingTable = function (store) {
|
||||||
destinationFmgPageValue: fmgPageValues.INSURANCE,
|
destinationFmgPageValue: fmgPageValues.INSURANCE,
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},{
|
},
|
||||||
|
{
|
||||||
fmgPageValue: fmgPageValues.INSURANCE,
|
fmgPageValue: fmgPageValues.INSURANCE,
|
||||||
maps: [
|
maps: [
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue