mirror of
https://github.com/ansible/awx.git
synced 2026-03-24 12:25:01 -02:30
Fixed bug where a weekly rrule string without a BYDAY would result in the UI throwing a TypeError (#14182)
This commit is contained in:
@@ -94,7 +94,7 @@ export default function FrequencyDetails({
|
|||||||
value={getRunEveryLabel()}
|
value={getRunEveryLabel()}
|
||||||
dataCy={`${prefix}-run-every`}
|
dataCy={`${prefix}-run-every`}
|
||||||
/>
|
/>
|
||||||
{type === 'week' ? (
|
{type === 'week' && options.daysOfWeek ? (
|
||||||
<Detail
|
<Detail
|
||||||
label={t`On days`}
|
label={t`On days`}
|
||||||
value={options.daysOfWeek
|
value={options.daysOfWeek
|
||||||
|
|||||||
Reference in New Issue
Block a user