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

Commit cbb8a55

Browse files
committed
Fix typo: use b-card-group instead of b-card-groups
Bootstrap-vue doesn't have a component named b-card-groups. It has been replaced with b-card-group instead. fixes #74
1 parent 5b5066c commit cbb8a55

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/Testimonial.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<b-card-groups class="testimonialContainer">
2+
<b-card-group class="testimonialContainer">
33
<b-card v-for="testimonial in testimonials" class="testimonial" :key="testimonial.id">
44
<div id="hearts">
55
<i class="material-icons" v-for="n in testimonial.stars" :key="n" style="text-align: center; color: #dc3545;">favorite</i>
@@ -10,7 +10,7 @@
1010
<footer class="blockquote-footer">{{ testimonial.author }}: <cite title="Source Title">{{ testimonial.specialization }}</cite></footer>
1111
</blockquote>
1212
</b-card>
13-
</b-card-groups>
13+
</b-card-group>
1414
</template>
1515
<script>
1616
export default {

0 commit comments

Comments
 (0)