Skip to content
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
8 changes: 8 additions & 0 deletions src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -715,6 +715,14 @@ input.switch:checked ~ label:after {
margin-right: 0.5rem;
}

.item-tags .item-tag:after {
content: ', ';
}
.item-tags .item-tag:last-child:after {
content: '';
}


/* To put duration on its own line, remove this bit. */
.item-duration {
display: inline-block;
Expand Down
2 changes: 1 addition & 1 deletion src/components/Tag.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Format } from '../utils/Format'

const Tag = ({ tag }) => {
return <div className="item-tag">{Format.formatTag(tag)},</div>;
return <div className="item-tag">{Format.formatTag(tag)}</div>;
};

export default Tag;