Skip to content

Commit

Permalink
Fixed not using the number
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaserlang committed Aug 7, 2024
1 parent 0fab1da commit 4720d37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tbot/web/ui/twitch/dashboard/quotes.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class Quotes extends React.Component {
<tr key={quote.number}>
<td>{quote.number}</td>
<td>{quote.message}</td>
<td className="text-right"><Link to={`quotes/edit/${quote.id}`}>Edit</Link></td>
<td className="text-right"><Link to={`quotes/edit/${quote.number}`}>Edit</Link></td>
</tr>
): <tr><td colSpan="8" className="text-center">No quotes.</td></tr>}
</tbody>
Expand Down

0 comments on commit 4720d37

Please sign in to comment.