b0dadea0ae
- Introduce a new download component to facilitate file downloads. - Implement download handling in the header context, supporting data URLs. - Add a test for the download functionality to ensure correct behavior. see https://github.com/sqlpage/SQLPage/discussions/996
7 lines
140 B
SQL
7 lines
140 B
SQL
select 'download' as component,
|
|
'data:text/plain;base64,SGVsbG8gZG93bmxvYWQh' as data_url,
|
|
'my text file.txt' as filename;
|
|
|
|
|
|
|