From 96551fa354144641deaa217349ef6a0b0847b7e4 Mon Sep 17 00:00:00 2001 From: Satont Date: Sun, 5 May 2024 15:00:26 +0300 Subject: [PATCH] feat(dashboard): small improvements on emotes statistic --- .../community-emotes-details-content.vue | 14 +------------- .../components/community-emotes-details.vue | 12 ++++++------ .../community-emotes-table-column-chart.vue | 2 ++ ...vue => community-emotes-table-column-emote.vue} | 9 +++++---- .../use-community-emotes-statistic-table.ts | 14 +++----------- 5 files changed, 17 insertions(+), 34 deletions(-) rename frontend/dashboard/src/features/community-emotes-statistic/components/{community-emotes-table-column-actions.vue => community-emotes-table-column-emote.vue} (74%) diff --git a/frontend/dashboard/src/features/community-emotes-statistic/components/community-emotes-details-content.vue b/frontend/dashboard/src/features/community-emotes-statistic/components/community-emotes-details-content.vue index 5600fd65a..84eb2f358 100644 --- a/frontend/dashboard/src/features/community-emotes-statistic/components/community-emotes-details-content.vue +++ b/frontend/dashboard/src/features/community-emotes-statistic/components/community-emotes-details-content.vue @@ -34,24 +34,12 @@ onMounted(() => { if (!chartContainer.value) return chart = createChart(chartContainer.value, { height: 240, - handleScroll: { - horzTouchDrag: false, - mouseWheel: false, - pressedMouseMove: false, - vertTouchDrag: false, - }, autoSize: true, layout: { textColor: 'white', fontFamily: 'Inter', background: { type: ColorType.Solid, color: 'transparent' }, }, - handleScale: { - pinch: false, - mouseWheel: false, - axisDoubleClickReset: false, - axisPressedMouseMove: false, - }, rightPriceScale: { borderColor: '#454545', }, @@ -124,7 +112,7 @@ const tableTab = ref<'top' | 'history'>('top')