-
-
Notifications
You must be signed in to change notification settings - Fork 29
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(banners): Add logic to avoid duplicating RECAP banners #287
Conversation
src/content_delegate.js
Outdated
@@ -220,6 +220,7 @@ ContentDelegate.prototype.handleDocketQueryUrl = function () { | |||
); | |||
} else { | |||
if (result.results) { | |||
PACER.removeBanners() |
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.
Curious...no semi-colon here?
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 created the commit before We fixed the issue with Prettier. After I merged the main branch with this one, the code formatter made a lot of changes to this file, so I created a .git-blame-ignore-revs file to avoid messing with the blame view.
Thanks for mentioning that file during the meeting.
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.
Looks fine except for the very small nitpick. If you want to fix that and merge, that seems good to me.
This PR fixes freelawproject/recap#318. We use the solution suggested in the issue.