Merge pull request #6227 from mermaid-js/update-promo-bar

Promo bar update
This commit is contained in:
Sidharth Vinod 2025-01-27 12:25:42 +05:30 committed by GitHub
commit 65ff22d94b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -29,7 +29,7 @@ let index = ref(Math.floor(Math.random() * taglines.length));
onMounted(() => { onMounted(() => {
setInterval(() => { setInterval(() => {
index.value = (index.value + 1) % taglines.length; index.value = (index.value + 1) % taglines.length;
}, 40_000); }, 5_000);
}); });
</script> </script>