-
Notifications
You must be signed in to change notification settings - Fork 71
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
Failed to Parsingという文法のミスを含んだエラーメッセージを一掃した #4076
Conversation
@ot0m1 |
6433871
to
eab15ff
Compare
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.
@Aseiide レビューが遅れて大変すいません🙇♂️
app/javascript/admin_companies.vue
app/javascript/company-users.vue
app/javascript/generation-users.vue
の3ファイルにconsole.warn('Failed to parsing', error)
という表記が残っているようですが、修正不要でしょうか。
また、
app/jabascript/announcement.vue の 93行目をthis.announcements.push(announcement)からthis.announcements(announcement) に一部改変する
上記のパスに誤りがあるようです。app/javascript/announcements.vue
のように思われます。
@ot0m1 レビューありがとうございます。
こちら、自分の修正漏れですね。修正します。
typoしてますね。Descriptionの方は既に修正しました。 |
@ot0m1 修正もれがあったのを再度修正しました。レビューお願いいたします。 |
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.
@Aseiide LGTMです!
@komagata |
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.
確認しました、OKですー🙆♂️
Failed to Parsing
という文法のミスを含んだエラーメッセージを一掃したい #3920変更前
chrome devtoolのコンソールのスクショ
変更後
chrome devtoolのコンソールのスクショ
上記を確認するための再現方法
ファイルを一部改変してわざとエラーを起こすことで確認することができます
app/javascript/announcements.vue
の93行目
をthis.announcements.push(announcement)
からthis.announcements(announcement)
に一部改変するannouncement.vue
でなくても任意のファイルを一部改変で大丈夫ですやったこと
console.warn(error)
となるように変更しました。もともとはエラーメッセージを
Failed to Parse
に書き換える、というissueだったのですがこちらのコメントのように、Failed to Parse
すらも不要ということでしたので、console.warn(error)
というふうに書き換えを行いました。