From deffbf4381369cf392dc46b9087c7ce9736588d4 Mon Sep 17 00:00:00 2001 From: Pavlo Vovzhynskyy Date: Thu, 25 May 2023 01:23:51 +0200 Subject: [PATCH] fixed setCalendars() documentation typo --- docs/en/apis/calendar.md | 10 +++++----- docs/ko/apis/calendar.md | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/en/apis/calendar.md b/docs/en/apis/calendar.md index 629b2d336..99968159f 100644 --- a/docs/en/apis/calendar.md +++ b/docs/en/apis/calendar.md @@ -498,11 +498,11 @@ Returns the view type currently displayed by the calendar instance. ```ts interface CalendarInfo { - id: string; - name: string; - color?: string; - bgColor?: string; - dragBgColor?: string; + id: string; + name: string; + color?: string; + backgroundColor?: string; + dragBackgroundColor?: string; borderColor?: string; } ``` diff --git a/docs/ko/apis/calendar.md b/docs/ko/apis/calendar.md index 572577b19..4f09b1af7 100644 --- a/docs/ko/apis/calendar.md +++ b/docs/ko/apis/calendar.md @@ -503,11 +503,11 @@ calendar.setOptions({ ```ts interface CalendarInfo { - id: string; - name: string; - color?: string; - bgColor?: string; - dragBgColor?: string; + id: string; + name: string; + color?: string; + backgroundColor?: string; + dragBackgroundColor?: string; borderColor?: string; } ```