Skip to content

Commit

Permalink
Merge pull request #68 from Workflomics/documentation-menu
Browse files Browse the repository at this point in the history
Replace "My Workflows" with the "User Guide"
  • Loading branch information
kretep authored May 28, 2024
2 parents 8670498 + 58c94ed commit 11c28cb
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions 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 package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Workflomics_frontend",
"version": "0.2.0",
"version": "1.0.0",
"private": true,
"dependencies": {
"@mdi/js": "^7.3.67",
Expand Down
8 changes: 4 additions & 4 deletions src/components/Home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ const Home: FC = () => {

return (
<div>
<div className="flex space-x-7 p-11">
<HomeBox label="Generate workflow" descr="Generation of workflows" imgUrl={generate_img} buttonText="Explore" isEnabled={true} component="/explore/domain" />
<HomeBox label="Benchmark workflows" descr="Evaluate the quality of your workflows" imgUrl={benchmark_img} buttonText="Benchmark" isEnabled={true} component="/benchmark/visualize" />
<HomeBox label="My workflows" descr="Explore discovered and uploaded workflows" imgUrl={history_img} buttonText="Workflows" isEnabled={true} component="/" />
<div className="flex space-x-7 p-11 justify-center">
<HomeBox label="Generate workflow" descr="Explore bioinformatics workflows generated according to your description" imgUrl={generate_img} buttonText="Explore" isEnabled={true} component="/explore/domain" />
<HomeBox label="Visualize benchmarks" descr="Upload and visualize the benchmarks performed locally" imgUrl={benchmark_img} buttonText="Benchmark" isEnabled={true} component="/benchmark/visualize" />
<HomeBox label="How to use Workflomics?" descr="Explore the Workflomics documentation" imgUrl={history_img} buttonText="User Guide" isEnabled={true} component="https://workflomics.readthedocs.io/en/latest/user-guide/web-interface.html" />
</div>
</div>

Expand Down
2 changes: 1 addition & 1 deletion src/components/explore/GenerationConfig.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const GenerationConfig: React.FC<any> = observer((props) => {
</div>
<div className="flex items-center m-2 tooltip tooltip-bottom"
data-tip="Specify desired number of workflows that satisfy the specification.">
<label className="w-80 text-lg">Number of solutions (max)</label>
<label className="w-80 text-lg">Number of workflows (max)</label>
<input
type="number"
className="input input-bordered w-full max-w-xs"
Expand Down

0 comments on commit 11c28cb

Please sign in to comment.