fix: Resolve props_invalid_value error and add each block keys\n\n- Initialized .files.upload_complete in src/routes/hosted_files/video_util/+page.svelte to prevent props_invalid_value error.\n- Removed commented-out, unused each blocks from several components.\n- Added each keys to improve reactivity and resolve svelte/require-each-key errors in several components.

This commit is contained in:
Scott Idem
2025-11-20 20:21:06 -05:00
parent a68d5439bd
commit b91d79c175
8 changed files with 14 additions and 31 deletions

View File

@@ -148,7 +148,7 @@
obj={sql_qry_result[0]}
primary_obj_li_type=""
/>
{#each sql_qry_result as record}
{#each sql_qry_result as record, index (index)}
<Element_obj_tbl_row obj={record} primary_obj_li_type="" />
{/each}
</table>