Skip to content
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

npm: bump lit-analyzer from 1.2.1 to 2.0.1 #3466

Merged
merged 2 commits into from
Oct 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading