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
).then((response3) => {
var col: IPropertyPaneDropdownOption[] = [];
for (var _key in response3.value) {
for (var _innerKey in response3.value) {
col.push({
key: response3.value[_key]["InternalName"],
text: response3.value[_key]["Title"],
key: response3.value[_innerKey]["InternalName"],
text: response3.value[_innerKey]["Title"],
});
}
this._columnOptions = col;