Skip to content

Commit a5f5e36

Browse files
committed
fix: Default CProgressBar changed to white.
1 parent d19fab4 commit a5f5e36

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/Progress/CProgressBar.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export default {
3434
'progress-bar',
3535
{
3636
'progress-bar-striped': this.computedStriped || this.computedAnimated,
37-
'progress-bar-animated': this.computedAnimated
37+
'progress-bar-animated': this.computedAnimated
3838
}
3939
]
4040
},
@@ -54,7 +54,7 @@ export default {
5454
},
5555
computedColor () {
5656
// Prefer our color over parent setting
57-
return getColor(this.color || this.$parent.color || '#20A8D8')
57+
return getColor(this.color || this.$parent.color || '#fff')
5858
},
5959
computedPrecision () {
6060
// Prefer our precision over parent setting

0 commit comments

Comments
 (0)