Skip to content

Commit

Permalink
Merge branch 'V4'
Browse files Browse the repository at this point in the history
  • Loading branch information
xnodeoncode committed Sep 29, 2024
2 parents 7897e65 + fc9d7e4 commit fa75b58
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion v4/dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Bookshelf v4</title>
<script type="module" crossorigin src="assets/index-C9cm75lQ.js"></script>
<script type="module" crossorigin src="assets/index-rP9BeWfT.js"></script>
<link
rel="stylesheet"
type="text/css"
Expand Down
2 changes: 1 addition & 1 deletion v4/src/components/Book/Book.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ export default function Book({ book, books, updateBooks, setSelectedBook }) {
</div>
<div className={styles.buttons}>
<button
type="button"
id={"e_" + book.id}
type="button"
onClick={() => setSelectedBook(book)}
>
✏️
Expand Down
2 changes: 1 addition & 1 deletion v4/src/components/BookForm/BookForm.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export function BookForm({
id="author"
name="author"
value={book.author}
placeholder="Enter book author"
placeholder="Enter author name"
onChange={(e) =>
updateBook({
...book,
Expand Down

0 comments on commit fa75b58

Please sign in to comment.