Skip to content

Commit 396aac3

Browse files
authored
spel variable name "correctly"
1 parent 7361c07 commit 396aac3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

assets/js/app.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ class LicenseSuggestion {
9797
this.inputEl = inputEl;
9898
this.licenseId = licenseId;
9999
this.statusIndicator = statusIndicator;
100-
this.inputWraper = $('.input-wrapper');
100+
this.inputWrapper = $('.input-wrapper');
101101
this.tooltipErrorClasses = 'hint--bottom tooltip--error hint--always';
102102

103103
this.bindEventHandlers();
@@ -157,8 +157,8 @@ class LicenseSuggestion {
157157
setStatus(status = '', message = '') {
158158
const statusClass = status.toLowerCase();
159159
const displayTooltip = (s, m) => {
160-
this.inputWraper.attr('aria-label', `${s}: ${m}`);
161-
this.inputWraper.addClass(this.tooltipErrorClasses);
160+
this.inputWrapper.attr('aria-label', `${s}: ${m}`);
161+
this.inputWrapper.addClass(this.tooltipErrorClasses);
162162
};
163163

164164
switch (status) {
@@ -171,7 +171,7 @@ class LicenseSuggestion {
171171
break;
172172
default:
173173
this.statusIndicator.removeClass('fetching error');
174-
this.inputWraper.removeClass(this.tooltipErrorClasses);
174+
this.inputWrapper.removeClass(this.tooltipErrorClasses);
175175
break;
176176
}
177177
}

0 commit comments

Comments
 (0)