Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add tabs in event details assets #739

Merged
merged 1 commit into from
Jun 25, 2024
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 @@ -29,18 +29,6 @@ const EventDetailsAssetAttachmentDetails = ({

return (
<div className="modal-content">
{/* Hierarchy navigation */}
<EventDetailsTabHierarchyNavigation
openSubTab={openSubTab}
hierarchyDepth={1}
translationKey0={"EVENTS.EVENTS.DETAILS.ASSETS.ATTACHMENTS.TITLE"}
subTabArgument0={"asset-attachments"}
translationKey1={
"EVENTS.EVENTS.DETAILS.ASSETS.ATTACHMENTS.DETAILS.TITLE"
}
subTabArgument1={"attachment-details"}
/>

<div className="modal-body">
{/* Notifications */}
<Notifications context="not_corner" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,6 @@ const EventDetailsAssetAttachments = ({

return (
<div className="modal-content">
{/* Hierarchy navigation */}
<EventDetailsTabHierarchyNavigation
openSubTab={openSubTab}
hierarchyDepth={0}
translationKey0={"EVENTS.EVENTS.DETAILS.ASSETS.ATTACHMENTS.TITLE"}
subTabArgument0={"asset-attachments"}
/>

<div className="modal-body">
{/* Notifications */}
<Notifications context="not_corner" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,6 @@ const EventDetailsAssetCatalogDetails = ({

return (
<div className="modal-content">
{/* Hierarchy navigation */}
<EventDetailsTabHierarchyNavigation
openSubTab={openSubTab}
hierarchyDepth={1}
translationKey0={"EVENTS.EVENTS.DETAILS.ASSETS.CATALOGS.TITLE"}
subTabArgument0={"asset-catalogs"}
translationKey1={"EVENTS.EVENTS.DETAILS.ASSETS.CATALOGS.DETAILS.TITLE"}
subTabArgument1={"catalog-details"}
/>

<div className="modal-body">
{/* Notifications */}
<Notifications context="not_corner" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,6 @@ const EventDetailsAssetCatalogs = ({

return (
<div className="modal-content">
{/* Hierarchy navigation */}
<EventDetailsTabHierarchyNavigation
openSubTab={openSubTab}
hierarchyDepth={0}
translationKey0={"EVENTS.EVENTS.DETAILS.ASSETS.CATALOGS.TITLE"}
subTabArgument0={"asset-catalogs"}
/>

<div className="modal-body">
{/* Notifications */}
<Notifications context="not_corner" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,6 @@ const EventDetailsAssetMedia = ({

return (
<div className="modal-content">
{/* Hierarchy navigation */}
<EventDetailsTabHierarchyNavigation
openSubTab={openSubTab}
hierarchyDepth={0}
translationKey0={"EVENTS.EVENTS.DETAILS.ASSETS.MEDIA.TITLE"}
subTabArgument0={"asset-media"}
/>

<div className="modal-body">
{/* Notifications */}
<Notifications context="not_corner" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,6 @@ const EventDetailsAssetMediaDetails = ({

return (
<div className="modal-content">
{/* Hierarchy navigation */}
<EventDetailsTabHierarchyNavigation
openSubTab={openSubTab}
hierarchyDepth={1}
translationKey0={"EVENTS.EVENTS.DETAILS.ASSETS.MEDIA.TITLE"}
subTabArgument0={"asset-media"}
translationKey1={"EVENTS.EVENTS.DETAILS.ASSETS.MEDIA.DETAILS.TITLE"}
subTabArgument1={"media-details"}
/>

<div className="modal-body">
{/* Notifications */}
<Notifications context="not_corner" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,18 +29,6 @@ const EventDetailsAssetPublicationDetails = ({

return (
<div className="modal-content">
{/* Hierarchy navigation */}
<EventDetailsTabHierarchyNavigation
openSubTab={openSubTab}
hierarchyDepth={1}
translationKey0={"EVENTS.EVENTS.DETAILS.ASSETS.PUBLICATIONS.TITLE"}
subTabArgument0={"asset-publications"}
translationKey1={
"EVENTS.EVENTS.DETAILS.ASSETS.PUBLICATIONS.DETAILS.TITLE"
}
subTabArgument1={"publication-details"}
/>

<div className="modal-body">
{/* Notifications */}
<Notifications context="not_corner" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,6 @@ const EventDetailsAssetPublications = ({

return (
<div className="modal-content">
{/* Hierarchy navigation */}
<EventDetailsTabHierarchyNavigation
openSubTab={openSubTab}
hierarchyDepth={0}
translationKey0={"EVENTS.EVENTS.DETAILS.ASSETS.PUBLICATIONS.TITLE"}
subTabArgument0={"asset-publications"}
/>

<div className="modal-body">
{/* Notifications */}
<Notifications context="not_corner" />
Expand Down
Loading
Loading