mirror of
https://github.com/pnp/sp-dev-fx-webparts.git
synced 2025-02-09 06:25:01 +00:00
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
|
||||
).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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user