-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
UI: fix browser console formatting #20064
UI: fix browser console formatting #20064
Conversation
<p class="console-ui-command is-font-mono"><Icon @name="chevron-right" />{{@content}}</p> |
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.
@@ -1,8 +1,10 @@ | |||
<div class="console-ui-output has-copy-button"> | |||
<pre>Keys | |||
<pre> | |||
Keys |
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.
<p class="console-ui-command is-font-mono"><Icon @name="chevron-right" />{{@content}}</p> |
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.
:)
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.
Thank you for fixing this!
@@ -47,7 +47,7 @@ module.exports = { | |||
}, | |||
'require-input-label': 'off', | |||
}, | |||
ignore: ['lib/story-md', 'tests/**'], | |||
ignore: ['lib/story-md', 'tests/**', 'app/templates/components/console/*'], |
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.
I wonder if it would be better to use a block quote to disable the specific rule in the file? This disables linting for all the files in that directory which then wouldn't catch any other errors.
* fix console formatting for help output * fix again * fix again * fix, add to ignore * fix, add to ignore * add to ignore file * fix formatting, no verify * remove lib/story.md * add changelog * hold off updating ignore list for separate ticket * fix test
* fix console formatting for help output * fix again * fix again * fix, add to ignore * fix, add to ignore * add to ignore file * fix formatting, no verify * remove lib/story.md * add changelog * hold off updating ignore list for separate ticket * fix test
* UI: fix browser console formatting (#20064) * fix console formatting for help output * fix again * fix again * fix, add to ignore * fix, add to ignore * add to ignore file * fix formatting, no verify * remove lib/story.md * add changelog * hold off updating ignore list for separate ticket * fix test * UI/add prettier ignore for ui console file (#20094) * fix template-lintrc file * add prettier ignore
* UI: fix browser console formatting (#20064) * fix console formatting for help output * fix again * fix again * fix, add to ignore * fix, add to ignore * add to ignore file * fix formatting, no verify * remove lib/story.md * add changelog * hold off updating ignore list for separate ticket * fix test * UI/add prettier ignore for ui console file (#20094) * fix template-lintrc file * add prettier ignore
During the Ember upgrade to 3.24 we implemented some linting changes that inadvertently affected the browser console’s output. Each command should be on a separate line. Fixes #19568
before
after fix
>
(not on line below)