Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,8 @@ const EventDetailsAssetsAddAsset = ({
? t(asset.displayOverride)
: t(asset.title)}
<span className="ui-helper-hidden">
({asset.type} "{asset.flavorType}//
{ // eslint-disable-next-line react/jsx-no-comment-textnodes
} ({asset.type} "{asset.flavorType}//
{asset.flavorSubType}")
</span>
</td>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ const NewAssetUploadPage = ({
? t(asset.displayOverride)
: t(asset.title)}
<span className="ui-helper-hidden">
({asset.type} "{asset.flavorType}//
{ // eslint-disable-next-line react/jsx-no-comment-textnodes
} ({asset.type} "{asset.flavorType}//
{asset.flavorSubType}")
</span>
</td>
Expand Down
6 changes: 4 additions & 2 deletions app/src/components/events/partials/wizards/NewEventSummary.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,8 @@ const NewEventSummary = ({
<td>
{asset.translate}
<span className="ui-helper-hidden">
({asset.type} "{asset.flavorType}//
{ // eslint-disable-next-line react/jsx-no-comment-textnodes
} ({asset.type} "{asset.flavorType}//
{asset.flavorSubType}")
</span>
</td>
Expand Down Expand Up @@ -129,7 +130,8 @@ const NewEventSummary = ({
asset["displayOverride.SHORT"]
)}
<span className="ui-helper-hidden">
({asset.type} "{asset.flavorType}//
{ // eslint-disable-next-line react/jsx-no-comment-textnodes
} ({asset.type} "{asset.flavorType}//
{asset.flavorSubType}")
</span>
</td>
Expand Down