You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Enabled viewing the directory structure of any folder in the repo,
defined relative to its root, inside the frontend. Improved the UI
for the file viewer, directory viewer, and the homepage.
placeholder="Directory tree will be displayed here in YAML format after loading.",
60
+
),
61
+
62
+
# Manual path input + prompt
63
+
dbc.Row(
64
+
[
65
+
dbc.Input(
66
+
id=f"{PAGE_PREFIX}-manual-path",
67
+
placeholder="Enter or paste directory path here...",
68
+
type="text",
69
+
style={
70
+
"fontSize": "1.1rem",
71
+
"width": "800px"
72
+
},
73
+
),
74
+
],
75
+
),
76
+
77
+
html.P(
78
+
[
79
+
"The input field above is for convenience - it allows you to quickly write the path into it, without leaving the page, which you can then copy-paste into the ",
80
+
html.A(
81
+
"file viewer",
82
+
href="/File_Viewer",
83
+
style={
84
+
"fontWeight": "bold",
85
+
"color": "#007bff",
86
+
"textDecoration": "underline"
87
+
}
88
+
),
89
+
" to view the contents of a yaml or json file. Ensure that the path is relative to the repo root, and that the file exists.",
0 commit comments