Skip to content

Commit

Permalink
Merge branch 'main' into prod
Browse files Browse the repository at this point in the history
  • Loading branch information
sharanyavinod committed Apr 10, 2024
2 parents 5fa7876 + 09bd062 commit 9ecdf39
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
4 changes: 2 additions & 2 deletions build/index.html

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions src/components/AdventureDetail.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ function AdventureDetail() {
<h1 className="adventure-detail-title" data-aue-prop="title" data-aue-type="text">{currentAdventure.title}</h1>
<div className="pill default">
<span
// data-aue-prop="activity" data-aue-type="text"
data-aue-prop="activity" data-aue-type="text"
>{currentAdventure.activity}
</span>
</div>
Expand Down Expand Up @@ -87,25 +87,25 @@ function AdventureDetailRender({
<div className="adventure-detail-info-label">
<h6>Adventure Type</h6>
<span
// data-aue-prop='adventureType' data-aue-type="text"
data-aue-prop='adventureType' data-aue-type="text"
>{adventureType}</span>
</div>
<div className="adventure-detail-info-label">
<h6>Trip Length</h6>
<span
// data-aue-prop='tripLength' data-aue-type="text"
data-aue-prop='tripLength' data-aue-type="text"
>{tripLength}</span>
</div>
<div className="adventure-detail-info-label">
<h6>Difficulty</h6>
<span
// data-aue-prop='difficulty' data-aue-type="text"
data-aue-prop='difficulty' data-aue-type="text"
>{difficulty}</span>
</div>
<div className="adventure-detail-info-label">
<h6>Group Size</h6>
<span
// data-aue-prop='groupSize' data-aue-type="text"
data-aue-prop='groupSize' data-aue-type="text"
>{groupSize}</span>
</div>
</div>
Expand Down
5 changes: 2 additions & 3 deletions src/components/Adventures.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,15 @@ function AdventureItem(props) {
</div>
<h3 className="adventure-item-title" data-aue-prop="title" data-aue-type="text">{props.title.toLowerCase()}</h3>
<div className="adventure-item-details">
{/* todo: renable inline edit for span */}
<div className="adventure-item-length pill default">
<span
// data-aue-prop="tripLength" data-aue-type="text"
data-aue-prop="tripLength" data-aue-type="text"
>{props.tripLength?.toLowerCase()}
</span>
</div>
<div className="adventure-item-price pill">$
<span
// data-aue-prop="price" data-aue-type="text"
data-aue-prop="price" data-aue-type="text"
>{props.price}
</span>
</div>
Expand Down

1 comment on commit 9ecdf39

@comanV
Copy link
Collaborator

@comanV comanV commented on 9ecdf39 Apr 10, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.