Skip to content
This repository was archived by the owner on Mar 26, 2025. It is now read-only.

Commit 32a6f63

Browse files
fix calls
1 parent a123c7a commit 32a6f63

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/App.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ class App extends Component {
8282
<table class="table">
8383
<thead>
8484
<tr>
85-
<th>{showID ? "ID" : "-"}</th>
85+
<th>ID</th>
8686
<th>Name</th>
8787
<th>Creator</th>
8888
<th>Created</th>
@@ -108,7 +108,7 @@ class App extends Component {
108108

109109
return (
110110
<tr key={project.id}>
111-
<td>{showID ? project.id : "-"}</td>
111+
<td>{project.id}</td>
112112
<td>{project.title}</td>
113113
<td style={{backgroundColor: project.color}}><a href={`https://scratch.mit.edu/users/${project.author}`}><img src={project.pfp.replace("60x60", "45x45").replace("50x50", "45x45")} className="pfp"></img><span className="verticalcenter">{" "}{author}</span></a></td>
114114
<td>

0 commit comments

Comments
 (0)