{t('actions.history')}

{#if loading}

{t('common.loading')}...

{:else if executions.length === 0}

{t('actions.noExecutions')}

{:else}
{#each executions as exec} {#if expandedId === exec.id}
{#if exec.error}

{exec.error}

{/if} {#if exec.summary?.rule_results} {#each exec.summary.rule_results as rr}
{rr.rule_name} {rr.items_matched} matched, {rr.items_affected} affected, {rr.items_skipped} skipped {#if rr.error} {rr.error} {/if}
{/each} {/if}
{/if} {/each}
{/if}