Skip to content

Commit 54d90dd

Browse files
Merge pull request #34 from vivian-xie-db/main
updated OLTP for dash
2 parents 3866495 + 5a9c0a6 commit 54d90dd

File tree

5 files changed

+495
-8
lines changed

5 files changed

+495
-8
lines changed

dash/app.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ def create_sidebar():
3030
sidebar_structure = {
3131
'Tables': [
3232
'Read a Delta table',
33-
'Edit a Delta table'
33+
'Edit a Delta table',
34+
'OLTP Database'
3435
],
3536
'Volumes': [
3637
'Upload a file',
@@ -66,6 +67,7 @@ def create_sidebar():
6667
page_icons = {
6768
'Read a Delta table': 'material-symbols:table-view',
6869
'Edit a Delta table': 'material-symbols:edit-document',
70+
'OLTP Database': 'material-symbols:database',
6971
'Upload a file': 'material-symbols:upload',
7072
'Download a file': 'material-symbols:download',
7173
'Invoke a model': 'material-symbols:model-training',

dash/pages/mcp_connect.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -248,12 +248,6 @@ def init_mcp_session(w: WorkspaceClient, connection_name: str):
248248
```""",
249249
className="mb-3"
250250
),
251-
html.H4("OAuth On-Behalf-Of User", className="mb-1"),
252-
dcc.Markdown(
253-
[],
254-
className="mb-3"
255-
),
256-
257251
], label="Code snippet", tab_id="tab-code"),
258252

259253
# Requirements tab

0 commit comments

Comments
 (0)