Skip to content

Commit

Permalink
Merge pull request #80 from 0916dhkim/history-show-date
Browse files Browse the repository at this point in the history
History Timestamp
  • Loading branch information
0916dhkim authored Mar 27, 2020
2 parents 3c05b75 + 1a0dd8c commit 66dcfbb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bookery",
"version": "1.3.1",
"version": "1.3.2",
"description": "======= Bookery =======",
"main": "dist/main/main.js",
"scripts": {
Expand Down
4 changes: 3 additions & 1 deletion src/renderer/users_view/history_edit_form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ import {
Container,
Input,
Icon,
Header
Header,
Label
} from "semantic-ui-react";
import { Book } from "../../common/persistence/book";
import { filterBook } from "../../common/persistence/filter_book";
Expand Down Expand Up @@ -150,6 +151,7 @@ export function HistoryEditForm({
}}
/>
{book.title} by {book.author}
<Label>{moment(view.date).format("YYYY/MM/DD")}</Label>
</Segment>
);
})}
Expand Down

0 comments on commit 66dcfbb

Please sign in to comment.