SQLpage icon indicating copy to clipboard operation
SQLpage copied to clipboard

Bug with "fixed_top_menu"

Open DSMejantel opened this issue 5 months ago • 2 comments

Introduction

When "fixed_top_menu":"TRUE" is actived, the page is not correctly done since sqlpage 0.27.

To Reproduce

--Menu
SELECT 'dynamic' AS component, 
CASE WHEN $group_id=1
THEN sqlpage.read_file_as_text('index.json')
ELSE sqlpage.read_file_as_text('menu.json')
            END    AS properties; 

select 
    'button' as component,
    'sm'     as size,
    --'pill'   as shape,
    'center' as justify;
select 
    'AESH' as title,
    'etab_aesh.sql?id=' || $id as link,

Actual behavior

Screenshots

probleme_menu

DSMejantel avatar Sep 13 '24 09:09 DSMejantel