You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2022/08/20 11:01:42 UTC

[airflow-site] branch main updated: Add missing comma (#649)

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 9dbd2bde56 Add missing comma (#649)
9dbd2bde56 is described below

commit 9dbd2bde5665892e023265823ba60d30a9cd5041
Author: anselboero <51...@users.noreply.github.com>
AuthorDate: Sat Aug 20 13:01:37 2022 +0200

    Add missing comma (#649)
    
    a missing comma does not allow the build of the Javascript file related to the collapsible menu
---
 sphinx_airflow_theme/setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sphinx_airflow_theme/setup.py b/sphinx_airflow_theme/setup.py
index d77f72436f..16bf2cae51 100644
--- a/sphinx_airflow_theme/setup.py
+++ b/sphinx_airflow_theme/setup.py
@@ -53,7 +53,7 @@ setup(
         'static/_gen/css/*.css',
         'static/_gen/js/*.js',
         'static/css/*.css',
-        'static/css/fonts/*.*'
+        'static/css/fonts/*.*',
         'static/js/*.js',
     ]},
     include_package_data=True,