-
Notifications
You must be signed in to change notification settings - Fork 0
Fix/qrcode hardening #16
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
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 |
|---|---|---|
|
|
@@ -29,9 +29,16 @@ | |
|
|
||
| <label class="form-label mt-3" for="logo_scale">Logo size:</label> | ||
| <div class="logo-slider-wrap"> | ||
| <<<<<<< Updated upstream | ||
|
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.
The committed conflict block in Useful? React with 👍 / 👎. |
||
| <input class="form-range" type="range" id="logo_scale" name="logo_scale" min="5" max="30" step="1" value="20"> | ||
| <span id="logo-scale-value">20%</span> | ||
| </div> | ||
| ======= | ||
| <input class="form-range" type="range" id="logo_scale" name="logo_scale" min="5" max="20" step="1" value="15"> | ||
| <span id="logo-scale-value">15%</span> | ||
| </div> | ||
| <small class="text-light d-block mt-2">For scan reliability, logo size is capped at 20%.</small> | ||
| >>>>>>> Stashed changes | ||
| </form> | ||
| <div class="device-container"></div> | ||
| <div class="iphone-mockup"></div> | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
<<<<<<<conflict marker committed inapp/qrcoderesponse.pymakes the module invalid Python, so importingqrcoderesponseraises aSyntaxErrorand the app cannot start (including/qrhandling and tests that import this module). This is a release-blocking runtime failure until the conflict is resolved and a single constant set is kept.Useful? React with 👍 / 👎.