Skip to content

Commit 011fccc

Browse files
Merge pull request #24 from vivian-xie-db/main
Added Dash external connections with UC connections
2 parents 028a504 + 5306882 commit 011fccc

File tree

9 files changed

+1555
-600
lines changed

9 files changed

+1555
-600
lines changed

dash/app.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,9 @@ def create_sidebar():
5555
'Authentication': [
5656
'Get current user',
5757
'Retrieve a secret'
58+
],
59+
'External Services': [
60+
'External Connections'
5861
]
5962
}
6063

@@ -73,7 +76,8 @@ def create_sidebar():
7376
'Retrieve job results': 'material-symbols:list-alt',
7477
'Connect': 'material-symbols:link',
7578
'Get current user': 'material-symbols:fingerprint',
76-
'Retrieve a secret': 'material-symbols:key'
79+
'Retrieve a secret': 'material-symbols:key',
80+
'External Connections': 'material-symbols:link'
7781
}
7882

7983
# Group pages by category
@@ -128,7 +132,7 @@ def create_sidebar():
128132
}),
129133
], className="sidebar-header"),
130134
html.Div(create_sidebar(), className="ps-4")
131-
], width=2, className="bg-light border-end overflow-auto p-0"),
135+
], width=2, className="sidebar overflow-auto p-0"),
132136

133137
dbc.Col([
134138
page_container

0 commit comments

Comments
 (0)