Modal integration in shell component - will this work in v0.36? #974
-
Hi @lovasoa ! Quick question about the upcoming 0.36 release - will this modal implementation work correctly in the shell menu component? I can't test this yet since the main Docker tag is still pulling 0.35.2. Menu item pointing to modal: json_object(
'title', (SELECT translation_value FROM language WHERE language_code = $lang AND translation_key = 'menu.contact'),
'icon', 'mail',
'link', '#contact_modal' -- Links to modal ID instead of mailto
), Modal at bottom of shell component: SELECT
'modal' AS component,
'contact_modal' AS id,
(SELECT translation_value FROM language WHERE language_code = $lang AND translation_key = 'menu.contact') AS title,
'You can reach us by email at [[email protected]](mailto:[email protected]).' AS contents_md,
(SELECT translation_value FROM language WHERE language_code = $lang AND translation_key = 'close_button_text') AS close; Specifically wondering if the |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Hi! You can try the upcoming release by pulling |
Beta Was this translation helpful? Give feedback.
-
Hi, I tried pulling the latest version of the image, but it still runs sqlpage 0.35.2, not 0.36. I did a complete fresh pull with verification to ensure no caching issues: docker rmi lovasoa/sqlpage:main
docker pull lovasoa/sqlpage:main
docker image inspect lovasoa/sqlpage:main --format='{{index .RepoDigests 0}}'
docker run --rm -it lovasoa/sqlpage:main sh -c "sqlpage --version" Output:
As you can see, the digest is consistent throughout:
This confirms I'm running the exact latest available image, which contains SQLPage 0.35.2. Could you please verify if version 0.36 was actually pushed to the Thanks! |
Beta Was this translation helpful? Give feedback.
You do have the latest version, with the latest features. The version number simply had not been updated yet