-
Notifications
You must be signed in to change notification settings - Fork 1
fix: handle null template validation messages #236
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 |
|---|---|---|
|
|
@@ -83,9 +83,9 @@ export default class Validate extends SfdxCommand { | |
| this.ux.table( | ||
| tasks.map(task => { | ||
| return { | ||
| label: task.label, | ||
| readinessStatus: task.readinessStatus, | ||
| message: task.message | ||
| label: task.label || '', | ||
|
Collaborator
Author
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. sfdx's ux.table doesn't like nulls, it throw a js error. And, I'm getting nulls on at least
Collaborator
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. do you need the same change in lint.ts?
Collaborator
Author
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. I'm seeing any nulls actually coming out in the lint responses currently, but, yeah, probably should do it there, too. I'll have it up in a sec.
Collaborator
Author
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. Ok, updated lint.ts too |
||
| readinessStatus: task.readinessStatus || '', | ||
| message: task.message || '' | ||
| }; | ||
| }), | ||
| { | ||
|
|
||
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.
yarn buildspit this file out, could be from newer versions of typescript, but the internet says we can ignore it.