Skip to content

Commit da7373f

Browse files
committed
Fixed test button state
1 parent a903a58 commit da7373f

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/components/Settings.vue

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@
271271
<v-layout row wrap justify-center>
272272
<!-- switch -->
273273
<v-flex xs12 offset-md2 md5>
274-
<v-switch label="Sonar" value="sonar" v-model="checkedTests" color="#f45525"></v-switch>
274+
<v-switch label="Sonar" value="sonar" v-model="checkedTests" color="orange"></v-switch>
275275
</v-flex>
276276
<!-- button state -->
277277
<v-flex xs12 md4>
@@ -302,14 +302,14 @@
302302
<v-layout row wrap justify-center>
303303
<!-- switch -->
304304
<v-flex xs12 offset-md2 md5>
305-
<v-switch label="Motors" value="motors" v-model="checkedTests" color="#f45525">
305+
<v-switch label="Motors" value="motors" v-model="checkedTests" color="orange">
306306
</v-switch>
307307
</v-flex>
308308
<!-- button state -->
309309
<v-flex xs12 md4>
310310
<span v-if="cb.logs.test != null && cb.logs.test.motors != 0">
311311
<!-- passed -->
312-
<span v-if="cb.logs.test.motor== 1">
312+
<span v-if="cb.logs.test.motors== 1">
313313
<v-btn @click="runTests" slot="activator" color="green" dark>
314314
<v-icon>fas fa-check</v-icon> Passed
315315
</v-btn>
@@ -334,7 +334,7 @@
334334
<v-layout row wrap justify-center>
335335
<!-- switch -->
336336
<v-flex xs12 offset-md2 md5>
337-
<v-switch label="Speaker" value="speaker" v-model="checkedTests" color="#f45525">
337+
<v-switch label="Speaker" value="speaker" v-model="checkedTests" color="orange">
338338
</v-switch>
339339
</v-flex>
340340
<!-- button state -->
@@ -366,7 +366,7 @@
366366
<v-layout row wrap justify-center>
367367
<!-- switch -->
368368
<v-flex xs12 offset-md2 md5>
369-
<v-switch label="OCR" value="ocr" v-model="checkedTests" color="#f45525">
369+
<v-switch label="OCR" value="ocr" v-model="checkedTests" color="orange">
370370
</v-switch>
371371
</v-flex>
372372
<!-- button state -->
@@ -405,14 +405,14 @@
405405
block
406406
@click="runTests"
407407
slot="activator"
408-
color="error"
408+
color="orange"
409409
dark>
410-
<v-icon>fas fa-share-square</v-icon> Run tests
410+
<v-icon>fas fa-running</v-icon> Run tests
411411
</v-btn>
412412
<v-btn v-else
413413
block
414414
disabled>
415-
<v-icon>fas fa-share-square</v-icon> Running tests...
415+
<v-icon>fas fa-ellipsis-h</v-icon> Running tests...
416416
</v-btn>
417417
<!-- DEBUG
418418
Running test: {{ cb.logs.runningTest }}

0 commit comments

Comments
 (0)