Skip to content

Commit

Permalink
#48768 - Remove unnecessary semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
Joanna Szczęch committed Jan 30, 2019
1 parent 00d32b6 commit 6885483
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions components/03-modules/gallery/Gallery.vue
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
</template>

<script>
import uniqueId from 'lodash.uniqueid';
import uniqueId from 'lodash.uniqueid'
import AlpacaBadge from '../../02-elements/badge/Badge.vue'
import AlpacaImage from '../../02-elements/image/Image.vue'
Expand Down Expand Up @@ -90,16 +90,16 @@
},
computed: {
getThumbsWithKey() {
return this.images.map(image => ({ key: uniqueId("image"), image }));
return this.images.map(image => ({ key: uniqueId("image"), image }))
},
selectedImage() {
return this.images[this.currentImage];
return this.images[this.currentImage]
}
},
methods: {
setCurrentImage (val) {
if(this.images[val]){
this.currentImage = val;
this.currentImage = val
}
}
}
Expand Down

0 comments on commit 6885483

Please sign in to comment.