feat: Remove legacy files and fix first svelte/no-at-html-tags error\n\n- Moved legacy files from src/routes/legacy to backups/legacy/src/routes/legacy.\n- Removed the empty src/routes/legacy directory.\n- Fixed a svelte/no-at-html-tags error in src/routes/idaa/(idaa)/archives/[archive_id]/+page.svelte by replacing '{@html ?.name ?? 'Archive'}' with '{?.name ?? 'Archive'}'.\n- Addressed a misidentified '{@html}' tag in src/lib/ae_core/ae_comp__hosted_files_clip_video.svelte by removing commented-out code that might have caused false positives.
This commit is contained in:
@@ -309,7 +309,9 @@
|
||||
bind:value={tmp__journal_obj.type_code}
|
||||
onchange={(event) => {
|
||||
// Update the cfg_json with the selected journal type. Example cate
|
||||
tmp__journal_obj.type_code = event.target.value;
|
||||
tmp__journal_obj.type_code = (
|
||||
event.target as HTMLInputElement
|
||||
).value;
|
||||
console.log('Selected journal type:', tmp__journal_obj.type_code);
|
||||
}}
|
||||
title="Select a journal type"
|
||||
@@ -387,7 +389,9 @@
|
||||
<select
|
||||
bind:value={tmp__journal_obj.cfg_json.entry_li_max_height}
|
||||
onchange={(event) => {
|
||||
tmp__journal_obj.cfg_json.entry_li_max_height = event.target.value;
|
||||
tmp__journal_obj.cfg_json.entry_li_max_height = (
|
||||
event.target as HTMLInputElement
|
||||
).value;
|
||||
console.log(
|
||||
'Selected max height:',
|
||||
tmp__journal_obj.cfg_json.entry_li_max_height
|
||||
@@ -416,8 +420,9 @@
|
||||
<select
|
||||
bind:value={tmp__journal_obj.cfg_json.entry_li_hover_max_height}
|
||||
onchange={(event) => {
|
||||
tmp__journal_obj.cfg_json.entry_li_hover_max_height =
|
||||
event.target.value;
|
||||
tmp__journal_obj.cfg_json.entry_li_hover_max_height = (
|
||||
event.target as HTMLInputElement
|
||||
).value;
|
||||
console.log(
|
||||
'Selected max height:',
|
||||
tmp__journal_obj.cfg_json.entry_li_hover_max_height
|
||||
@@ -445,8 +450,9 @@
|
||||
<select
|
||||
bind:value={tmp__journal_obj.cfg_json.entry_li_click_max_height}
|
||||
onchange={(event) => {
|
||||
tmp__journal_obj.cfg_json.entry_li_click_max_height =
|
||||
event.target.value;
|
||||
tmp__journal_obj.cfg_json.entry_li_click_max_height = (
|
||||
event.target as HTMLInputElement
|
||||
).value;
|
||||
console.log(
|
||||
'Selected max height:',
|
||||
tmp__journal_obj.cfg_json.entry_li_click_max_height
|
||||
@@ -547,7 +553,9 @@
|
||||
<select
|
||||
bind:value={tmp__journal_obj.cfg_json.color_scheme}
|
||||
onchange={(event) => {
|
||||
tmp__journal_obj.cfg_json.color_scheme = event.target.value;
|
||||
tmp__journal_obj.cfg_json.color_scheme = (
|
||||
event.target as HTMLInputElement
|
||||
).value;
|
||||
console.log(
|
||||
'Selected color scheme:',
|
||||
tmp__journal_obj.cfg_json.color_scheme
|
||||
@@ -574,7 +582,9 @@
|
||||
<select
|
||||
bind:value={tmp__journal_obj.cfg_json.pref_viewer}
|
||||
onchange={(event) => {
|
||||
tmp__journal_obj.cfg_json.pref_viewer = event.target.value;
|
||||
tmp__journal_obj.cfg_json.pref_viewer = (
|
||||
event.target as HTMLInputElement
|
||||
).value;
|
||||
console.log(
|
||||
'Selected viewer:',
|
||||
tmp__journal_obj.cfg_json.pref_viewer
|
||||
@@ -598,7 +608,9 @@
|
||||
<select
|
||||
bind:value={tmp__journal_obj.cfg_json.pref_editor}
|
||||
onchange={(event) => {
|
||||
tmp__journal_obj.cfg_json.pref_editor = event.target.value;
|
||||
tmp__journal_obj.cfg_json.pref_editor = (
|
||||
event.target as HTMLInputElement
|
||||
).value;
|
||||
console.log(
|
||||
'Selected editor:',
|
||||
tmp__journal_obj.cfg_json.pref_editor
|
||||
|
||||
Reference in New Issue
Block a user