chore: minor updates across events, journals, elements, and shared components
Miscellaneous small changes to events (badges, launcher, leads, pres_mgmt, settings), journals, reusable elements (crud, field editor), app components, core components, and test README. Mostly 1-2 line changes per file.
This commit is contained in:
@@ -190,7 +190,7 @@
|
||||
{Object.entries(hosted_file_obj_kv).length}× files uploaded
|
||||
</h3>
|
||||
|
||||
{#each Object.entries(hosted_file_obj_kv) as [hosted_file_id, hosted_file_obj]}
|
||||
{#each Object.entries(hosted_file_obj_kv) as [hosted_file_id, hosted_file_obj] (hosted_file_id)}
|
||||
<div class="border border-surface-500/20 rounded-lg p-2 m-2 preset-tonal-surface">
|
||||
<!-- Download Button (Standardized) -->
|
||||
<div
|
||||
|
||||
@@ -47,7 +47,7 @@
|
||||
|
||||
<h3 class="h3">{Object.entries(video_clip_file_kv).length}× files clipped</h3>
|
||||
<div class="{class_li_default} {class_li} ">
|
||||
{#each Object.entries(video_clip_file_kv) as [hosted_file_id, hosted_file_obj]}
|
||||
{#each Object.entries(video_clip_file_kv) as [hosted_file_id, hosted_file_obj] (hosted_file_id)}
|
||||
<AE_Comp_Hosted_Files_Download_Button
|
||||
{hosted_file_id}
|
||||
{hosted_file_obj}
|
||||
|
||||
@@ -230,7 +230,7 @@
|
||||
</button>
|
||||
</header>
|
||||
<div class="space-y-1">
|
||||
{#each cfg_json[list.key] ?? [] as uuid, i}
|
||||
{#each cfg_json[list.key] ?? [] as uuid, i (uuid)}
|
||||
<div class="flex gap-1 items-center bg-surface-500/10 p-1 rounded font-mono text-[10px]">
|
||||
<span class="grow truncate">{uuid}</span>
|
||||
<button class="text-error-500 hover:scale-110 transition-transform" onclick={() => remove_from_list(list.key, i)}>
|
||||
|
||||
Reference in New Issue
Block a user