Skip to content

Commit

Permalink
add urls
Browse files Browse the repository at this point in the history
  • Loading branch information
JackySun9 committed May 22, 2024
1 parent f5d994d commit 11f2872
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/ImageDiff.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const ImageDiff = ({ data, timestamp }) => {
<Tab eventKey={`tab-${segment}`} title={segment} key={idx}>
{items.map(({ category, comparisons }, index) => (
<div key={index}>
<h3>{index} - {category}</h3>
<h3>{index} - {category} [{comparisons[0].urls}]</h3>
<Table striped bordered hover>
<thead>
<tr>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const HomePage = () => {
<div className="text-2xl">Screenshot Tests:</div>
<div className='text-xl flex flex-row gap-6 m-3 flex-wrap'>
{directories.map((directory, index) => (
<div className="card w-80 bg-base-100 shadow-xl flex-auto" key={index}>
<div className="card w-80 bg-base-100 shadow-xl flex" key={index}>
<figure>
<img src="dog.jpg" alt={`${index}`} />
</figure>
Expand Down

0 comments on commit 11f2872

Please sign in to comment.