Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/shell/copy-themes.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ copyFile(
join(__dirname, 'src', 'app', 'themes.json'),
(err) => {
if (err) throw err;
console.log('themes.json copied');
console.log('themes.json copied'); // eslint-disable-line no-console
},
);
5 changes: 2 additions & 3 deletions packages/vue/src/components/library/ticker-card.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,12 @@
import { formatPrice } from '@/utils/formatters';
import { Sales, SalesOrOpportunitiesByCategory } from '@/types/analytics';
import { computed, withDefaults } from 'vue';
import CardAnalytics from '@/components/library/card-analytics.vue';

const props = withDefaults(
defineProps<{
icon: string,
tone?: 'warning' | 'info',
title? : string,
tone?: 'warning' | 'info', // eslint-disable-line vue/require-default-prop
title: string,
data?: SalesOrOpportunitiesByCategory | Sales | null,
total?: string | null,
percentage: number,
Expand Down
Loading