This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow-site.git
The following commit(s) were added to refs/heads/main by this push:
new 4d8050cf16 Fix typo: change 'inddex' to 'index' in integrationList.js
(#1292)
4d8050cf16 is described below
commit 4d8050cf16683e5de664c7fab1af22b584c3274f
Author: Sarcaxtic Larka <[email protected]>
AuthorDate: Tue Nov 25 21:00:23 2025 +0530
Fix typo: change 'inddex' to 'index' in integrationList.js (#1292)
---
landing-pages/src/js/integrationList.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/landing-pages/src/js/integrationList.js
b/landing-pages/src/js/integrationList.js
index bbe2c7dac0..a4e83a316a 100644
--- a/landing-pages/src/js/integrationList.js
+++ b/landing-pages/src/js/integrationList.js
@@ -78,7 +78,7 @@ function handleIntegration() {
.then((integrations) => {
integrations = shuffle(integrations);
integrations.sort(sortByLogoAvailability);
- integrations.forEach((i, index) => i.inddex = index);
+ integrations.forEach((i, index) => i.index = index);
return Promise.resolve(integrations);
});
fetchIntegrationRequest = request;