Skip to content

Commit

Permalink
chore: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonKempf committed Jan 10, 2024
1 parent 401d2dc commit c3ad5ba
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
</template>

<c-view-source source="lwc/recordPickerMultiValue" slot="footer">
Type a search terms and select records.
Type a search term and select records.
</c-view-source>
</lightning-card>
</template>
Original file line number Diff line number Diff line change
Expand Up @@ -109,10 +109,10 @@ export default class RecordPickerMultiValue extends LightningElement {

// We want the record picker input to be cleared
// each time the user selects a record suggestion
this._clearRecordPickerSeliction();
this._clearRecordPickerSelection();
}

_clearRecordPickerSeliction() {
_clearRecordPickerSelection() {
this.refs.recordPicker.clearSelection();
this.selectedRecordId = undefined;
}
Expand Down

0 comments on commit c3ad5ba

Please sign in to comment.