Skip to content

Commit

Permalink
getting ready for deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
JeeH-K committed May 17, 2024
1 parent ecdaf7c commit eb74900
Show file tree
Hide file tree
Showing 11 changed files with 3,691 additions and 4 deletions.
3,669 changes: 3,669 additions & 0 deletions dist/assets/index-05a624fb.js

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions dist/assets/index-912b5bda.css

Large diffs are not rendered by default.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added dist/favicon.ico
Binary file not shown.
15 changes: 15 additions & 0 deletions dist/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="./favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>openms-streamlit-vue-component</title>
<script type="module" crossorigin src="./assets/index-05a624fb.js"></script>
<link rel="stylesheet" href="./assets/index-912b5bda.css">
</head>
<body>
<div id="app"></div>

</body>
</html>
2 changes: 1 addition & 1 deletion openms-streamlit-vue-component
2 changes: 0 additions & 2 deletions pages/FileUpload.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,6 @@ def handleInputFiles(uploaded_files):
session_name = 'deconv-mzMLs'
elif file.name.endswith('_annotated.mzML'):
session_name = 'anno-mzMLs'
print(file.name)
print(st.session_state[session_name])
if file.name not in st.session_state[session_name]:
with open(
Path(st.session_state.workspace, session_name, file.name), "wb"
Expand Down
2 changes: 1 addition & 1 deletion src/components.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

# Create a _RELEASE constant. We'll set this to False while we're developing
# the component, and True when we're ready to package and distribute it.
_RELEASE = False
_RELEASE = True


def flash_viewer_grid_component(components, data, component_key='flash_viewer_grid'):
Expand Down

0 comments on commit eb74900

Please sign in to comment.