mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Webpack all the things! Fixes #2135
This significantly speeds up loading of the application; in an average of 3 tests, v1.6 loaded in 11.5s in the runtime on a Mac, whilst the webpacked version of the code loaded in 5.53s.
This commit is contained in:
committed by
Dave Page
parent
d04ac7656a
commit
4a91bcde30
@@ -52,28 +52,28 @@ class HelpModule(PgAdminModule):
|
||||
priority=100,
|
||||
isPrivate=True,
|
||||
title=gettext('Online Help'),
|
||||
icon='fa fa-question'),
|
||||
icon='fa fa-question').__dict__,
|
||||
|
||||
Panel(
|
||||
name='pnl_pgadmin_website',
|
||||
priority=200,
|
||||
title=gettext('pgAdmin Website'),
|
||||
icon='fa fa-external-link',
|
||||
content='https://www.pgadmin.org/'),
|
||||
content='https://www.pgadmin.org/').__dict__,
|
||||
|
||||
Panel(
|
||||
name='pnl_postgresql_website',
|
||||
priority=300,
|
||||
title=gettext('PostgreSQL Website'),
|
||||
icon='fa fa-external-link',
|
||||
content='http://www.postgresql.org/'),
|
||||
content='http://www.postgresql.org/').__dict__,
|
||||
|
||||
Panel(
|
||||
name='pnl_sql_help',
|
||||
priority=400,
|
||||
isPrivate=True,
|
||||
icon='fa fa-info',
|
||||
title=gettext('SQL Help'))]
|
||||
title=gettext('SQL Help')).__dict__]
|
||||
|
||||
def register_preferences(self):
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user