Skip to content

Commit

Permalink
npm: bump lit-analyzer from 1.2.1 to 2.0.1 (#3466)
Browse files Browse the repository at this point in the history
* npm: bump lit-analyzer from 1.2.1 to 2.0.1

Bumps [lit-analyzer](https://github.com/runem/lit-analyzer) from 1.2.1 to 2.0.1.
- [Release notes](https://github.com/runem/lit-analyzer/releases)
- [Changelog](https://github.com/runem/lit-analyzer/blob/master/CHANGELOG.md)
- [Commits](https://github.com/runem/lit-analyzer/commits)

---
updated-dependencies:
- dependency-name: lit-analyzer
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* Clear up newly-strict some lint errors

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jason Robbins <[email protected]>
  • Loading branch information
dependabot[bot] and jrobbins authored Oct 31, 2023
1 parent 2892fab commit de1635f
Show file tree
Hide file tree
Showing 5 changed files with 112 additions and 741 deletions.
2 changes: 1 addition & 1 deletion client-src/elements/chromedash-guide-new-page.js
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ export class ChromedashGuideNewPage extends LitElement {

return html`
<section id="stage_form">
<form name="overview_form" method="POST" action=${postAction}>
<form name="overview_form" method="post" action=${postAction}>
<input type="hidden" name="token">
<chromedash-form-table ${ref(this.registerHandlers)}>
${this.renderWarnings()}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ export class ChromedashGuideVerifyAccuracyPage extends LitElement {
'Accuracy last verified at time of creation.';

return html`
<form name="feature_form" method="POST" action="/guide/verify_accuracy/${this.featureId}">
<form name="feature_form" method="post" action="/guide/verify_accuracy/${this.featureId}">
<input type="hidden" name="stages" value="${stageIds}">
<input type="hidden" name="token">
<input type="hidden" name="form_fields" value=${allFormFields.join(',')}>
Expand Down
2 changes: 1 addition & 1 deletion client-src/elements/chromedash-userlist.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ class ChromedashUserlist extends LitElement {
render() {
this.sortUsers();
return html`
<form id="form" name="user_form" method="POST">
<form id="form" name="user_form" method="post">
<div>
<input type="email" placeholder="Email address" name="email"
required>
Expand Down
Loading

0 comments on commit de1635f

Please sign in to comment.