Skip to content

Commit

Permalink
fix(style_manager): only show values that is_templayer values is not …
Browse files Browse the repository at this point in the history
…true
  • Loading branch information
FerranMart committed Aug 29, 2024
1 parent e79388a commit 172812a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion updates/36/36012/utils/ddlview.sql
Original file line number Diff line number Diff line change
Expand Up @@ -354,4 +354,5 @@ SELECT
sys_style.active
FROM sys_style
JOIN config_style
ON sys_style.styleconfig_id = config_style.id;
ON sys_style.styleconfig_id = config_style.id
WHERE config_style.is_templayer IS NULL OR config_style.is_templayer = false;

0 comments on commit 172812a

Please sign in to comment.