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'"
|
||||
@focus="$emit('focus', $event.target.value)"
|
||||
@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="!isDisabled">
|
||||
<label class="camera-icon-input" v-show="!isImageProcessing">
|
||||
|
|
@ -164,8 +168,9 @@ export default {
|
|||
};
|
||||
},
|
||||
methods: {
|
||||
focusSearchInput() { //Focus cursor in input when search icon is clicked
|
||||
const field = document.querySelector('input');
|
||||
focusSearchInput() {
|
||||
//Focus cursor in input when search icon is clicked
|
||||
const field = document.querySelector("input");
|
||||
field.focus();
|
||||
},
|
||||
async imageChanged(e) {
|
||||
|
|
|
|||
|
|
@ -9,10 +9,7 @@
|
|||
</div>
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-md-6 col-xl-4">
|
||||
|
||||
<funnelSubHeader
|
||||
cmsWidgetName="FunnelSubHeaderWidget"
|
||||
class="mt-4" />
|
||||
<funnelSubHeader cmsWidgetName="FunnelSubHeaderWidget" class="mt-4" />
|
||||
|
||||
<textboxQuestion
|
||||
class="mb-2 mt-5"
|
||||
|
|
|
|||
|
|
@ -394,7 +394,8 @@ const routingTable = function (store) {
|
|||
destinationFmgPageValue: fmgPageValues.INSURANCE,
|
||||
},
|
||||
],
|
||||
},{
|
||||
},
|
||||
{
|
||||
fmgPageValue: fmgPageValues.INSURANCE,
|
||||
maps: [
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue