Skip to content

Commit

Permalink
chore: changes based on feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
hroth1994 committed Sep 6, 2024
1 parent 08d67c8 commit 6bfcf59
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion es-ds-components/components/es-carousel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const autoplayInterval = ref(props.autoscroll ? 3000 : 0);
const key = ref('');
const stopAutoplay = () => {
if (props.autoscroll) {
if (autoplayInterval.value > 0) {
autoplayInterval.value = 0;
key.value = 'stopAutoplay';
}
Expand Down
1 change: 1 addition & 0 deletions es-ds-components/nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ export default defineNuxtConfig({
'primevue/accordiontab',
'primevue/breadcrumb',
'primevue/button',
'primevue/carousel',
'primevue/column',
'primevue/datatable',
'primevue/dialog',
Expand Down
2 changes: 1 addition & 1 deletion es-ds-docs/components/ds-organisms-list.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<ul class="list-unstyled pl-100">
<li>
<ds-link to="/molecules/carousel"> Carousel </ds-link>
<ds-link to="/organisms/carousel"> Carousel </ds-link>
</li>
</ul>
</template>
2 changes: 1 addition & 1 deletion es-ds-docs/pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<nuxt-link to="/molecules"> Molecules </nuxt-link>
</li>
<li>
<nuxt-link to="/molecules"> Organisms </nuxt-link>
<nuxt-link to="/organisms"> Organisms </nuxt-link>
</li>
</ul>
</div>
Expand Down

0 comments on commit 6bfcf59

Please sign in to comment.