Skip to content

Commit

Permalink
Improve usage page content
Browse files Browse the repository at this point in the history
  • Loading branch information
relliv committed Nov 4, 2024
1 parent be53dd3 commit 8ecd34e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/docs/vue/usage.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -141,13 +141,13 @@ const options = ref<ICalendarHeatmapOptions>({
// highlight-next-line
hideEmptyDays: false,
// highlight-next-line
locale: props.selectedLocale,
locale: 'en',
// highlight-next-line
colors: props.selectedColorVariant,
colors: [],
// highlight-next-line
heatmapLegend: {
// highlight-next-line
display: props.selectedHeatmapLevelState,
display: true,
// highlight-next-line
direction: HeatmapLevelsDirection.RIGHT,
// highlight-next-line
Expand All @@ -157,7 +157,6 @@ const options = ref<ICalendarHeatmapOptions>({
// highlight-next-line
});
// ...
// highlight-next-line
Expand Down Expand Up @@ -213,6 +212,7 @@ const onDayClick = (day: IHeatmapDay) => {
// ...
onMounted(() => {
// highlight-next-line
heatmapData.value = generateHeatmapData(startDate.value);
});
</script>
Expand Down

0 comments on commit 8ecd34e

Please sign in to comment.