Fixed a minor linting

This commit is contained in:
Hugo Bernier 2021-11-04 01:24:40 -04:00
parent 24ee3a8679
commit 08bf757546
1 changed files with 3 additions and 3 deletions

View File

@ -453,10 +453,10 @@ export default class ModernCalendarWebPart extends BaseClientSideWebPart<IModern
this.properties.site this.properties.site
).then((response3) => { ).then((response3) => {
var col: IPropertyPaneDropdownOption[] = []; var col: IPropertyPaneDropdownOption[] = [];
for (var _key in response3.value) { for (var _innerKey in response3.value) {
col.push({ col.push({
key: response3.value[_key]["InternalName"], key: response3.value[_innerKey]["InternalName"],
text: response3.value[_key]["Title"], text: response3.value[_innerKey]["Title"],
}); });
} }
this._columnOptions = col; this._columnOptions = col;