buli
2023-05-23 07390e2fcb4adf27c928335bf27ae7939c5a80ad
force-app/main/default/lwc/lexLookup/lexLookup.js
@@ -157,6 +157,7 @@
    }
    connectedCallback(){
        console.log('LexLookup accountValue = ' + this.accountValue);
        console.log('isDisabledForDealerText = ' + this.isDisabledForDealerText);
    }
@@ -336,6 +337,7 @@
    handleClearSelection() {
        this._curSelection = [];
        this._hasFocus = false;
        this.accountValue = '';
        // Process selection update
        this.processSelectionUpdate(true);
    }
@@ -458,12 +460,12 @@
    }
    get getInputValue() {
        if(this.accountValue != ''){
            return this.accountValue;
        }
        if (this.isMultiEntry) {
            return this._searchTerm;
        }
        if(this.accountValue != ''){
            return this.accountValue;
        }
        return this.hasSelection() ? this._curSelection[0].title : this._searchTerm;
    }