diff --git a/funnel/assets/js/schedule_view.js b/funnel/assets/js/schedule_view.js index 538b82d94..63875eecd 100644 --- a/funnel/assets/js/schedule_view.js +++ b/funnel/assets/js/schedule_view.js @@ -276,8 +276,9 @@ const Schedule = { this.config.slotInterval ); if (this.config.schedule[session.eventDay]) { - this.config.schedule[session.eventDay].sessions[session.startTime].showLabel = - true; + this.config.schedule[session.eventDay].sessions[ + session.startTime + ].showLabel = true; this.config.schedule[session.eventDay].sessions[session.startTime].rooms[ session.room_scoped_name ].talk = session; diff --git a/sample.env b/sample.env index 08c528399..159905cbc 100644 --- a/sample.env +++ b/sample.env @@ -107,9 +107,9 @@ FLASK_CACHE_REDIS_URL=redis://${REDIS_HOST}:6379/0 # --- Database configuration DB_HOST=localhost # Main app database -FLASK_SQLALCHEMY_DATABASE_URI='postgresql+psycopg:///funnel_test' +FLASK_SQLALCHEMY_DATABASE_URI='postgresql+psycopg:///funnel' # Geoname database (the use of `__` creates a dict and sets a key in the dict) -FLASK_SQLALCHEMY_BINDS__geoname='postgresql+psycopg:///geoname_testing' +FLASK_SQLALCHEMY_BINDS__geoname='postgresql+psycopg:///geoname' # --- Email configuration # SMTP mail server ('localhost' if Postfix is configured as a relay email server)