From 0a5e2dfcb12f3c27262e6a6cc25f11dcd52c7958 Mon Sep 17 00:00:00 2001 From: Irina Peshinskaya Date: Sun, 17 Mar 2019 21:52:08 +0100 Subject: [PATCH] TT#54350 Always show hours related text in rrule description Change-Id: Ibda64adaaeacdde3fadf4d83504794367bff5199 --- share/static/js/libs/rrule/rrule.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/share/static/js/libs/rrule/rrule.js b/share/static/js/libs/rrule/rrule.js index 08fdb7d702..67a07e6f47 100644 --- a/share/static/js/libs/rrule/rrule.js +++ b/share/static/js/libs/rrule/rrule.js @@ -2858,10 +2858,10 @@ var totext_ToText = /** @class */ (function () { if (this.bymonthday) { this._bymonthday(); } - else if (this.byweekday) { + if (this.byweekday) { this._byweekday(); } - else if (this.origOptions.byhour) { + if (this.origOptions.byhour) { this._byhour(); } };