File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -56,6 +56,7 @@ _This release is scheduled to be released on 2025-01-01._
56
56
- [ calendar] - fix showEndsOnlyWithDuration not working, #3598 , applies ONLY to full day events
57
57
- [ calendar] - fix showEnd for Full Day events #3602
58
58
- [ tests] Suppress "module is not defined" in e2e tests
59
+ - [ calendar] - fixes #3267 (styles array, really this time!)
59
60
60
61
## [ 2.29.0] - 2024-10-01
61
62
Original file line number Diff line number Diff line change @@ -907,9 +907,9 @@ Module.register("calendar", {
907
907
let p = this . getCalendarProperty ( url , property , defaultValue ) ;
908
908
if ( property === "symbol" || property === "recurringSymbol" || property === "fullDaySymbol" ) {
909
909
const className = this . getCalendarProperty ( url , "symbolClassName" , this . config . defaultSymbolClassName ) ;
910
- p = className + p ;
910
+ if ( p instanceof Array ) p . push ( className ) ;
911
+ else p = className + p ;
911
912
}
912
-
913
913
if ( ! ( p instanceof Array ) ) p = [ p ] ;
914
914
return p ;
915
915
} ,
You can’t perform that action at this time.
0 commit comments