Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: disable smooth scrolling for logs and default to select restart services #1612

Merged
merged 6 commits into from
Oct 24, 2023
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion engine/frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion engine/frontend/src/component/PackageCatalogForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ const PackageCatalogForm = ({createEnclave, mode}) => {
const {state} = location;
const [runningPackage, setRunningPackage] = useState(false)
const [enclaveName, setEnclaveName] = useState("")
const [productionMode, setProductionMode] = useState(false)
const [productionMode, setProductionMode] = useState(true)
const [thisKurtosisPackage, setThisKurtosisPackage] = useState({})
const [formData, setFormData] = useState({})
const [errorData, setErrorData] = useState({})
Expand Down
4 changes: 3 additions & 1 deletion engine/frontend/src/component/log/Log.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@ export const Log = ({logs, fileName, currentExecutionStatus, executionStatusText

const handleScrollToBottom = () => {
virtuosoRef.current.scrollToIndex({
index: displayLogs.length - 1, behavior: 'smooth', align: "end"
index: displayLogs.length - 1,
behavior: 'auto',
align: "end",
});
}

Expand Down
6 changes: 3 additions & 3 deletions engine/server/webapp/asset-manifest.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"files": {
"main.css": "./static/css/main.2cce5778.css",
"main.js": "./static/js/main.8ed2cf3c.js",
"main.js": "./static/js/main.497df013.js",
"index.html": "./index.html",
"main.2cce5778.css.map": "./static/css/main.2cce5778.css.map",
"main.8ed2cf3c.js.map": "./static/js/main.8ed2cf3c.js.map"
"main.497df013.js.map": "./static/js/main.497df013.js.map"
},
"entrypoints": [
"static/css/main.2cce5778.css",
"static/js/main.8ed2cf3c.js"
"static/js/main.497df013.js"
]
}
2 changes: 1 addition & 1 deletion engine/server/webapp/index.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<!doctype html><html lang="en"><head><meta charset="utf-8"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><title>Kurtosis Enclave Manager</title><script defer="defer" src="./static/js/main.8ed2cf3c.js"></script><link href="./static/css/main.2cce5778.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
<!doctype html><html lang="en"><head><meta charset="utf-8"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><title>Kurtosis Enclave Manager</title><script defer="defer" src="./static/js/main.497df013.js"></script><link href="./static/css/main.2cce5778.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>

Large diffs are not rendered by default.

Large diffs are not rendered by default.