-
Notifications
You must be signed in to change notification settings - Fork 157
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
[#2001] Extract c-file-type-checkboxes from Summary, Authorship and Zoom #2173
Conversation
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.
LGTM!
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.
Really great job on this PR @sopa301! LGTM, just a minor nit on the naming/design of the emits of the new component.
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.
Thanks! LGTM
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.
LGTM! Thanks for the refactor @sopa301! I think we can merge this once the new file is renamed.
The following links are for previewing this pull request:
|
return `${label.fileType}\xA0\xA0` | ||
+ `${label.blankLineCount}\xA0\xA0` | ||
+ `(${label.lineCount - label.blankLineCount})\xA0`; |
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.
@sopa301 This must be showing "Line count (Line count - blank line count)", but this is "Blank line count (Line count - blank line count)" instead.
return `${label.fileType}\xA0\xA0` | |
+ `${label.blankLineCount}\xA0\xA0` | |
+ `(${label.lineCount - label.blankLineCount})\xA0`; | |
return `${label.fileType}\xA0\xA0` | |
+ `${label.lineCount}\xA0\xA0` | |
+ `(${label.lineCount - label.blankLineCount})\xA0`; |
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.
Oops, I'll create a PR to fix it!
Part of #2001.
Proposed commit message
Other information
Progress: