Fixed a minor linting
This commit is contained in:
parent
24ee3a8679
commit
08bf757546
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue