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

added user guide links #397

Merged
merged 3 commits into from
May 23, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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 frontend/public/locales/en/projectformTranslation.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"runnerComponent": {
"testWarning": "No appropriate test file found, can't upload project",
"clearSelected": "Clear Selection",
"tooltipRunner": "If you're having trouble figuring out the runner please refer to the docs",
"tooltipRunner": "If you're having trouble figuring out the runner please refer to the ",
"userDocs": "runner user docs"
},
"dragAndDrop": {
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/ProjectForm/ProjectForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ export default function ProjectForm() {
<Grid item>
<Stack direction="row" style={{display: "flex", alignItems:"center", paddingBottom: "40px"}}>
<FolderDragDrop onFileDrop={file => handleFileUpload2(file)} regexRequirements={[]} />
<Tooltip style={{ height: "40%" }} title={<Typography variant="h6">{t("fileInfo")}: <Link to="/">{t("userDocs")}</Link></Typography>}>
<Tooltip style={{ height: "40%" }} title={<Typography variant="h6">{t("fileInfo")}: <Link to="/user-guide">{t("userDocs")}</Link></Typography>}>
<IconButton>
<InfoOutlined/>
</IconButton>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/ProjectForm/RunnerSelecter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export default function RunnerSelecter({ handleSubmit, runner, containsDocker, c
<MenuItem value={t("clearSelected")}>{t("clearSelected")}</MenuItem>
</Select>
</FormControl>
<Tooltip title={<Typography variant="h6">{t("tooltipRunner")}: <Link to="/">{t("userDocs")}</Link></Typography>}>
<Tooltip title={<Typography variant="h6">{t("tooltipRunner")}: <Link to="/user-guide/docs/category/evaluators">{t("userDocs")}</Link></Typography>}>
<IconButton>
<InfoOutlined/>
</IconButton>
Expand Down