Hi
got this issue :
Key "exception_count" for sequence/mapping with keys "id, scheduled_dataflow_id, status, label, dataflow_type, options, requested_date, count, exceptions, start_time, end_time" does not exis
|
{content: (job.exception_count is not null ? job.exception_count : job.exceptions|length)|format_number(locale: app.request.locale)}, |
I'm on Ibexa 5 php 8.4 the fix could be :
{content: ((job.exception_count is defined and job.exception_count is not null) ? job.exception_count : job.exceptions|length)|format_number(locale: app.request.locale)},
Hi
got this issue :
Key "exception_count" for sequence/mapping with keys "id, scheduled_dataflow_id, status, label, dataflow_type, options, requested_date, count, exceptions, start_time, end_time" does not exisibexa-dataflow-bundle/src/Resources/views/themes/admin/ibexa_dataflow/parts/tab/job_list.html.twig
Line 22 in 457b4e2
I'm on Ibexa 5 php 8.4 the fix could be :
{content: ((job.exception_count is defined and job.exception_count is not null) ? job.exception_count : job.exceptions|length)|format_number(locale: app.request.locale)},