Skip to content

Commit 86b273b

Browse files
sijucjlovasoa
authored andcommitted
feat: change insert query for documentation
- "_blank" to open the link in a new tab - "_self" to open it in the same tab - "_parent" to open it in the parent frame - "_top" to open it in the full body of the window
1 parent 9412033 commit 86b273b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

examples/official-site/sqlpage/migrations/01_documentation.sql

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -972,7 +972,8 @@ INSERT INTO parameter(component, name, description, type, top_level, optional) S
972972
('theme', 'Set to "dark" to use a dark theme.', 'TEXT', TRUE, TRUE),
973973
('footer', 'Muted text to display in the footer of the page. This can be used to display a link to the terms and conditions of your application, for instance. By default, shows "Built with SQLPage". Supports links with markdown.', 'TEXT', TRUE, TRUE),
974974
('preview_image', 'The URL of an image to display as a link preview when the page is shared on social media', 'URL', TRUE, TRUE),
975-
('navbar_title', 'The title to display in the top navigation bar. Used to display a different title in the top menu than the one that appears in the tab of the browser.', 'TEXT', TRUE, TRUE)
975+
('navbar_title', 'The title to display in the top navigation bar. Used to display a different title in the top menu than the one that appears in the tab of the browser.', 'TEXT', TRUE, TRUE),
976+
('target', '"_blank" to open the link in a new tab, "_self" to open it in the same tab, "_parent" to open it in the parent frame, or "_top" to open it in the full body of the window', 'TEXT', TRUE, TRUE)
976977
) x;
977978

978979
INSERT INTO example(component, description, properties) VALUES

0 commit comments

Comments
 (0)