Skip to content

Commit

Permalink
[VEUE-864] resolve comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Sirbuland committed Jun 23, 2021
1 parent 51604c5 commit b8ced60
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/javascript/controllers/profile_edit_controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export default class extends Controller {
const response = await putForm(".", this.formTarget);

const html = await response.text();
this.formTarget.element.innerHTML = html;
this.formTarget.innerHTML = html;

showNotification("Your profile was successfully updated");
}
Expand Down
2 changes: 1 addition & 1 deletion app/javascript/style/components/_video_card.scss
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ $min-width: 230px;
&__placeholder {
width: $max-width;
padding-bottom: 63.25%; // use padding-bottom since height: x% will always be 0.
background: hsla(0, 0 * 1%, 0 * 1%, 0.1);
background: hsla(0, 0%, 0%, 0.1);
border-radius: 10px;
}
}
Expand Down

0 comments on commit b8ced60

Please sign in to comment.