Skip to content

Commit

Permalink
Merge pull request #20 from gudzsv/bugfix/work-together
Browse files Browse the repository at this point in the history
  • Loading branch information
gudzsv authored Apr 27, 2024
2 parents 5589438 + 2b53775 commit 3cba783
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/partials/work-together/work-together.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<footer class="work-together section-pb">
<footer class="work-together section-pb" id="work-together">
<div class="container">
<h2 class="title-work-together header-2">
<picture class="title-image">
Expand Down
2 changes: 1 addition & 1 deletion src/partials/work-together/work-together.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ inputComments.value = formData.userComments;

form.addEventListener('input', event => {
const { name, value } = event.target;
formData[name] = value;
formData[name] = value.trim();
setToLocalStorage(formData);
});

Expand Down

0 comments on commit 3cba783

Please sign in to comment.