sarcaxticlarka opened a new issue, #1291: URL: https://github.com/apache/airflow-site/issues/1291
# Bug Report: Typo in `integrationList.js` (Line 81) ## Issue There is a typo in the property name within the `forEach` loop — `inddex` is used instead of the correct `index`. ## Current Code ```js integrations.forEach((i, index) => i.inddex = index); ``` <img width="783" height="301" alt="Image" src="https://github.com/user-attachments/assets/1541a327-d283-4435-803f-06fee8602d04" /> ## Expected ```js integrations.forEach((i, index) => i.index = index); ``` ## Impact Because of the misspelled property, each integration object receives an `inddex` field instead of `index`. Any functionality that relies on `index` will fail or behave unexpectedly. ## Proposed Fix Replace `inddex` with `index` on line 81 of `integrationList.js`. ## Additional Request Please #assign this issue to me so I can fix it while I'm already working in this part of the codebase. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
