Skip to content

Commit

Permalink
Git eslint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tomansley committed Nov 26, 2024
1 parent b13e830 commit 96e325b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export default class simpliUIListViewsAdminModal extends NavigationMixin(Lightni

@api showModal; //indicates whether this modal dialog should be displayed or not.
_listViewObject;
@api get listViewObject() { return this._listViewObject; }; //the object of the list view.
@api get listViewObject() { return this._listViewObject; } //the object of the list view.
set listViewObject(value) {
this._listViewObject = value;
this.fieldSelectorObjectStartList = [];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ export default class SimpliUIListViewsFieldSelector extends LightningElement {
handleItemSelected(event) {
let index = Number(event.currentTarget.dataset.index);
let value = event.currentTarget.dataset.value;
let type = undefined;
let relObj = undefined;
let type;
let relObj;

console.log('Item Selected - ' + value + ' @ index ' + index);

Expand Down Expand Up @@ -105,7 +105,7 @@ export default class SimpliUIListViewsFieldSelector extends LightningElement {

}

handleCancelClick(event) {
handleCancelClick() {
this.dispatchEvent(new CustomEvent('cancel', { detail: {value: false}}));

//reset values
Expand All @@ -116,7 +116,7 @@ export default class SimpliUIListViewsFieldSelector extends LightningElement {
}];
}

handleSelectClick(event) {
handleSelectClick() {
console.log('Field Selected - ' + this.selectedField);
this.dispatchEvent(new CustomEvent('select', { detail: this.selectedField}));

Expand Down

0 comments on commit 96e325b

Please sign in to comment.