Skip to content

Commit 0feb87d

Browse files
fix(ticker-card.vue): missing comma in defineProps obj props (#393)
1 parent 467a57e commit 0feb87d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/vue/src/components/library/ticker-card.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ import { computed, withDefaults } from 'vue';
3434
const props = withDefaults(
3535
defineProps<{
3636
icon: string,
37-
tone?: 'warning' | 'info'
37+
tone?: 'warning' | 'info',
3838
title: string,
3939
data?: SalesOrOpportunitiesByCategory | Sales | null,
4040
total?: string | null,

0 commit comments

Comments
 (0)