-
Notifications
You must be signed in to change notification settings - Fork 47
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
Replace download-chromium with puppeteer-core #178
Conversation
359ac7f
to
edf5db0
Compare
:rules="[rules.required]" | ||
@change="changed = true" | ||
/> | ||
<v-text-field | ||
v-model="exporter.options.budgetId" | ||
label="Budget id" | ||
outlined | ||
:rules="rules.required" | ||
:rules="[rules.required]" |
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.
Fix bug
export enum AccountStatus { | ||
IDLE, PENDING, IN_PROGRESS, DONE, ERROR | ||
IDLE = 'IDLE', | ||
PENDING = 'PENDING', | ||
IN_PROGRESS = 'IN_PROGRESS', | ||
DONE = 'DONE', | ||
ERROR = 'ERROR' | ||
} |
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.
More readable in the console, so why not
@brafdlog It is not including another PR now, you can review. |
@brafdlog Note I enabled Auto-Merge, I don't know exactly what is the procedure, but it is mean that if you're commenting a suggestion and then approving my PR, it will merge automatically. This is something to consider. I think in my company we are enabling Auto Merge only on already approved PRs, just for auto merging after the validation checks. |
@baruchiro I am used to approving prs with comments if in general I accept the pr except for minor changes. The benefit of this is that it doesn't require another review which can be a redundant blocker. So we can either stay with auto merge and only approve when all is well or disable auto merge. I think we should disable auto merge because waiting for another review on minor changes can take a few days if we are busy and I don't think that is worth it. WDYT? |
Yeah, sure, I totally agree with you. I just wanted to check this feature :-) |
Still have problems with the Windows installed version. I'm getting errors from
download-chromium
when it usesncp
. We don't need that package anymore.Reference: juliangruber/download-chromium#23
Still related to #170