We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54c8243 commit f4b6816Copy full SHA for f4b6816
src/components/Image/CImage.vue
@@ -55,7 +55,8 @@ export default {
55
},
56
computed: {
57
isActive () {
58
- return true
+ //active prop is present in CImageLazy component, here always undefined
59
+ return this.active !== false
60
61
alignClass () {
62
if (this.align === 'left') {
src/components/Image/CImageLazy.vue
@@ -35,9 +35,6 @@ export default {
35
this.removeListener()
36
37
38
- isActive () {
39
- return this.active
40
- },
41
animationClasses () {
42
if (this.fade) {
43
return { 'c-opacity-0' : !this.animated }
0 commit comments