Skip to content

Commit 96e4905

Browse files
guide: separate "skip mode" from the "why are we waiting" section (#2338)
* Closes #2333
1 parent 1867bfd commit 96e4905

File tree

1 file changed

+34
-15
lines changed

1 file changed

+34
-15
lines changed

src/views/Guide.vue

Lines changed: 34 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,40 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
8686
</p>
8787
</v-card-text>
8888
</v-card>
89+
90+
<br />
91+
92+
<v-card variant="outlined" class="pa-1">
93+
<v-card-title primary-title>
94+
<p class="text-h4 text--primary">Skip Mode?</p>
95+
</v-card-title>
96+
<v-card-text>
97+
<p>
98+
Tasks can be configured to skip rather than run. These tasks are
99+
marked with a special icon proving they are not otherwise held
100+
back from running by some other factor (e.g, if they are held).
101+
</p>
102+
<v-list
103+
lines="three"
104+
>
105+
<v-list-item>
106+
<template v-slot:prepend>
107+
<task
108+
style="font-size: 2em;"
109+
:task="{state: 'waiting', runtime: { runMode: 'Skip' }}"
110+
class="mr-4"
111+
/>
112+
</template>
113+
<v-list-item-title>
114+
Skip Mode
115+
</v-list-item-title>
116+
<v-list-item-subtitle>
117+
This task will be run in skip mode.
118+
</v-list-item-subtitle>
119+
</v-list-item>
120+
</v-list>
121+
</v-card-text>
122+
</v-card>
89123
</v-col>
90124

91125
<v-col>
@@ -150,21 +184,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
150184
which restricts the number of active cycle points.
151185
</v-list-item-subtitle>
152186
</v-list-item>
153-
<v-list-item>
154-
<template v-slot:prepend>
155-
<task
156-
style="font-size: 2em;"
157-
:task="{state: 'waiting', runtime: { runMode: 'Skip' }}"
158-
class="mr-4"
159-
/>
160-
</template>
161-
<v-list-item-title>
162-
Skip Mode
163-
</v-list-item-title>
164-
<v-list-item-subtitle>
165-
This task will be run in skip mode.
166-
</v-list-item-subtitle>
167-
</v-list-item>
168187
<v-list-item>
169188
<template v-slot:prepend>
170189
<task

0 commit comments

Comments
 (0)