Skip to content
This repository has been archived by the owner on Mar 2, 2022. It is now read-only.

Commit

Permalink
Fix typo: use b-card-group instead of b-card-groups
Browse files Browse the repository at this point in the history
Bootstrap-vue doesn't have a component named b-card-groups. It has been replaced with b-card-group instead.

fixes #74
  • Loading branch information
rkpattnaik780 committed Jan 31, 2019
1 parent 5b5066c commit cbb8a55
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Testimonial.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<b-card-groups class="testimonialContainer">
<b-card-group class="testimonialContainer">
<b-card v-for="testimonial in testimonials" class="testimonial" :key="testimonial.id">
<div id="hearts">
<i class="material-icons" v-for="n in testimonial.stars" :key="n" style="text-align: center; color: #dc3545;">favorite</i>
Expand All @@ -10,7 +10,7 @@
<footer class="blockquote-footer">{{ testimonial.author }}: <cite title="Source Title">{{ testimonial.specialization }}</cite></footer>
</blockquote>
</b-card>
</b-card-groups>
</b-card-group>
</template>
<script>
export default {
Expand Down

0 comments on commit cbb8a55

Please sign in to comment.