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:
@@ -60,6 +60,13 @@
|
||||
$ae_loc.files.processed_file_kv = {};
|
||||
}
|
||||
|
||||
if (!$ae_sess.files) {
|
||||
$ae_sess.files = {};
|
||||
}
|
||||
if (typeof $ae_sess.files.upload_complete === 'undefined') {
|
||||
$ae_sess.files.upload_complete = false;
|
||||
}
|
||||
|
||||
$effect(() => {
|
||||
// if ($ae_sess.files.upload_complete && $ae_sess.files.uploaded_file_li) {
|
||||
// // Append this list to the $ae_loc.files.uploaded_file_li list
|
||||
|
||||
Reference in New Issue
Block a user