This commit is contained in:
hexeosis 2026-06-16 15:06:56 +00:00 committed by GitHub
commit 97d89ccbce
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -2733,7 +2733,7 @@ async def create_matryoshka_panel():
refresh_carriers()
# Carrier upload
carrier_upload_html, carrier_upload_js = create_drop_zone(
carrier_upload_html, carrier_upload_js = create_file_picker(
'matryoshka_carrier', 'image/png,image/jpeg,image/webp',
'/api/matryoshka/add_carrier', 'matryoshka'
)
@ -2809,7 +2809,7 @@ async def create_matryoshka_panel():
depth_slider.on('update:model-value', update_depth)
# Image upload for decode
decode_upload_html, decode_upload_js = create_drop_zone(
decode_upload_html, decode_upload_js = create_file_picker(
'matryoshka_decode', 'image/png',
'/api/upload/decode', 'matryoshka'
)