Fixing song edit and delete
Some checks failed
Music Collection CI Workflow / test (./backend) (push) Successful in 28s
Music Collection CI Workflow / test (./frontend) (push) Successful in 36s
Music Collection CI Workflow / build-and-push-images (./backend/Dockerfile, git.anatid.net/tabris/music-collection-backend, ./backend) (push) Successful in 49s
Music Collection CI Workflow / build-and-push-images (./frontend/Dockerfile, git.anatid.net/tabris/music-collection-frontend, ./frontend) (push) Failing after 1m22s
Music Collection CI Workflow / deploy (push) Has been skipped
Some checks failed
Music Collection CI Workflow / test (./backend) (push) Successful in 28s
Music Collection CI Workflow / test (./frontend) (push) Successful in 36s
Music Collection CI Workflow / build-and-push-images (./backend/Dockerfile, git.anatid.net/tabris/music-collection-backend, ./backend) (push) Successful in 49s
Music Collection CI Workflow / build-and-push-images (./frontend/Dockerfile, git.anatid.net/tabris/music-collection-frontend, ./frontend) (push) Failing after 1m22s
Music Collection CI Workflow / deploy (push) Has been skipped
This commit is contained in:
parent
b6fa866abe
commit
f7c5a3baec
@ -130,10 +130,10 @@ export default function Page() {
|
||||
<td>{song.title}</td>
|
||||
<td>{TimeUtils.fancyTimeFormat(song.duration)}</td>
|
||||
<td>
|
||||
<IconButton aria-label="Edit Song" size="small" album-id={song.id.toString()} onClick={handleEdit}>
|
||||
<IconButton aria-label="Edit Song" size="small" song-id={song.id.toString()} onClick={handleEdit}>
|
||||
<Edit fontSize="inherit" color="success"/>
|
||||
</IconButton>
|
||||
<IconButton aria-label="Delete Song" size="small" album-id={song.id.toString()} onClick={handleDelete}>
|
||||
<IconButton aria-label="Delete Song" size="small" song-id={song.id.toString()} onClick={handleDelete}>
|
||||
<Delete fontSize="inherit" color="success"/>
|
||||
</IconButton>
|
||||
</td>
|
||||
|
@ -1,6 +0,0 @@
|
||||
const Button = () => {
|
||||
return (
|
||||
<button className="button-primary">Sign In</button>
|
||||
);
|
||||
};
|
||||
export default Button;
|
@ -13,12 +13,9 @@ const Navbar = () => {
|
||||
</li>
|
||||
<li className="navbar-item">
|
||||
<Link href="/album" className="navbar-link">
|
||||
<p>Albums</p>
|
||||
<h1>Music Collection</h1>
|
||||
</Link>
|
||||
</li>
|
||||
<li className="navbar-item">
|
||||
<Button />
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
|
Loading…
x
Reference in New Issue
Block a user