-
Notifications
You must be signed in to change notification settings - Fork 71
Make header position configurable #1140
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
110ddce
3fbfefc
973f1cc
866e455
b7e315e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -893,6 +893,12 @@ | |
"description": "Enables or disable the command palette. Disable to use the old search module.", | ||
"descriptionmsg": "citizen-config-enablecommandpalette", | ||
"public": true | ||
}, | ||
"HeaderPosition": { | ||
"value": "left", | ||
"description": "Position of the header on the desktop layout. Possible values: 'left', 'right', 'top' and 'bottom'", | ||
"descriptionmsg": "citizen-config-headerposition", | ||
"public": true | ||
} | ||
Comment on lines
+897
to
902
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chainNew public config entry The declaration is fine. Please verify:
Run this script to confirm wiring and i18n presence: 🏁 Script executed: #!/bin/bash
set -euo pipefail
echo "Searching for i18n message citizen-config-headerposition…"
rg -nP '"citizen-config-headerposition"\s*:' i18n -S || { echo "MISSING: i18n message"; exit 1; }
echo "Searching for server-side usage of HeaderPosition…"
rg -nP '\bHeaderPosition\b' includes -S || echo "WARN: No direct HeaderPosition usage found under includes/"
echo "Searching for emission of citizen-header-position-* class…"
rg -nP 'citizen-header-position-(left|right|top|bottom)' includes resources -n -S Length of output: 79 Add missing i18n key and verify server-side hookup
|
||
}, | ||
"manifest_version": 2 | ||
|
Uh oh!
There was an error while loading. Please reload this page.