-
-
Notifications
You must be signed in to change notification settings - Fork 618
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
Fix bug report confirmation dialog width and scroll #6573
Fix bug report confirmation dialog width and scroll #6573
Conversation
to fix width and scroll of bug submission confirmation dialog Signed-off-by: parthiv-m <[email protected]>
Signed-off-by: parthiv-m <[email protected]>
This makes no sense. `` doesn't produce |
message: "You can track your bug report at [" + url + "](" + url + ")." | ||
|
||
+ "\n\n<br />Please note that we will respond to your bug report on the link above. **We recommended that you save the above link for later reference.**" | ||
|
||
+ "\n\n<br />If your issue is critical (e.g. notes not syncing, crashes etc.), please [join our Discord community](https://discord.com/invite/zQBK97EE22) for one-to-one support." |
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.
This is unnecessary. The pre tag is created due to the indentation. Just remove that and it'll work.
To add empty line breaks in Markdown, use \\
instead of <br>
.
Yep, it worked in my tests (locally). But I'll make the indentation change nevertheless. |
Signed-off-by: parthiv-m <[email protected]>
Hi, I realised that the way I interpreted the change was wrong, rather than the usage of backticks itself. The code that fixed it was the concatenation of strings rather than removing interpolation altogether. I have reverted back to using backticks but concatenated them instead of giving fixed spacing. My apologies for the confusion. I have attached a screenshot of the result and updated the PR description too. |
Signed-off-by: Abdullah Atta <[email protected]>
Thanks! |
+
s so that a `` is generated instead of a `pre` which was causing the fixed width and ugly scroll issue