Skip to content

Commit 0a29b93

Browse files
committed
reinstated some of the error infrastructure in Stepper, but left it disabled
1 parent 6d0c77c commit 0a29b93

1 file changed

Lines changed: 12 additions & 12 deletions

File tree

src/components/Stepper.vue

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
icon=""
1616
name="start"
1717
title="Start"
18-
v-bind:active-icon="'edit'"
19-
v-bind:color="'primary'"
18+
v-bind:active-icon="false ? 'warning' : 'edit'"
19+
v-bind:color="false ? 'negative' : 'primary'"
2020
v-bind:error="false"
2121
v-bind:order="0"
2222
v-on:click="setStepName('start')"
@@ -28,8 +28,8 @@
2828
icon=""
2929
name="authors"
3030
title="Authors"
31-
v-bind:active-icon="'edit'"
32-
v-bind:color="'primary'"
31+
v-bind:active-icon="false ? 'warning' : 'edit'"
32+
v-bind:color="false ? 'negative' : 'primary'"
3333
v-bind:error="false"
3434
v-bind:order="1"
3535
v-on:click="setStepName('authors')"
@@ -52,8 +52,8 @@
5252
icon=""
5353
name="identifiers"
5454
title="Identifiers"
55-
v-bind:active-icon="'edit'"
56-
v-bind:color="'primary'"
55+
v-bind:active-icon="false ? 'warning' : 'edit'"
56+
v-bind:color="false ? 'negative' : 'primary'"
5757
v-bind:error="false"
5858
v-bind:order="3"
5959
v-if="showAdvanced"
@@ -66,8 +66,8 @@
6666
icon=""
6767
name="related-resources"
6868
title="Related resources"
69-
v-bind:active-icon="'edit'"
70-
v-bind:color="'primary'"
69+
v-bind:active-icon="false ? 'warning' : 'edit'"
70+
v-bind:color="false ? 'negative' : 'primary'"
7171
v-bind:error="false"
7272
v-bind:order="4"
7373
v-if="showAdvanced"
@@ -89,8 +89,8 @@
8989
icon=""
9090
name="keywords"
9191
title="Keywords"
92-
v-bind:active-icon="'edit'"
93-
v-bind:color="'primary'"
92+
v-bind:active-icon="false ? 'warning' : 'edit'"
93+
v-bind:color="false ? 'negative' : 'primary'"
9494
v-bind:error="false"
9595
v-bind:order="6"
9696
v-if="showAdvanced"
@@ -113,8 +113,8 @@
113113
icon=""
114114
name="version-specific"
115115
title="Version specific"
116-
v-bind:active-icon="'edit'"
117-
v-bind:color="'primary'"
116+
v-bind:active-icon="false ? 'warning' : 'edit'"
117+
v-bind:color="false ? 'negative' : 'primary'"
118118
v-bind:error="false"
119119
v-bind:order="8"
120120
v-if="showAdvanced"

0 commit comments

Comments
 (0)