Skip to content

Commit

Permalink
added tooltip
Browse files Browse the repository at this point in the history
  • Loading branch information
bhatiadheeraj committed Mar 18, 2024
1 parent 9fa5923 commit 6a0a7ec
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
4 changes: 3 additions & 1 deletion ui/src/assets/noprocess.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@
<p>
To do so, look under the <b>Archive</b> tab on your new project.
Select data objects from a single subject by clicking the checkbox next to each DataType.
Then click <b><icon name="play"/> Stage to process</b> button to open <i>Stage Datasets</i> modal
Then click <b><icon name="play"/> Stage to process
<icon name="info-circle" title="Staging data for processing prepares and transfers selected datasets to a computational environment where they can be analyzed or processed according to project requirements"/>
</b> button to open <i>Stage Datasets</i> modal
where you can select your own project to stage selected dataset to. Click Submit to create a new process.
</p>
<p>
Expand Down
4 changes: 3 additions & 1 deletion ui/src/components/datasets.vue
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,9 @@
</b-btn>
</p>
<p>
<b-btn size="sm" variant="outline-secondary" @click="process"><icon name="play" scale="0.8"/> Stage to process</b-btn>
<b-btn size="sm" variant="outline-secondary" @click="process"><icon name="play" scale="0.8"/> Stage to process
<icon name="info-circle" title="Staging data for processing prepares and transfers selected datasets to a computational environment where they can be analyzed or processed according to project requirements"/>
</b-btn>
</p>
<p>
<b-btn size="sm" variant="outline-secondary" @click="copy"><icon name="copy" scale="0.8"/> Copy</b-btn>
Expand Down
2 changes: 2 additions & 0 deletions ui/src/project.vue
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,10 @@
<div v-if="project.stats && get_total(project.stats.instances) > 0" style="display: inline-block; width: 75px;">
<stateprogress :states="project.stats.instances"/>
</div>
<icon name="info-circle" title="A Process is a logical grouping of data analysis and processing tasks that share input and output datasets."/>
</span>


<span v-if="tabinfo.id == 'pipeline' && project.stats && project.stats.rules && (project.stats.rules.active||project.stats.rules.inactive)"
title="Number of pipeline rules" style="opacity: 0.6; font-size: 80%;">
&nbsp;{{project.stats.rules.active}} <small>/ {{project.stats.rules.active + project.stats.rules.inactive}}</small>
Expand Down

0 comments on commit 6a0a7ec

Please sign in to comment.