mirror of
https://github.com/datahub-project/datahub.git
synced 2025-10-10 16:33:48 +00:00

* Releases updated version of datahub-web client UI code * Fix typo in yarn lock * Change yarn lock to match yarn registry directories * Previous commit missed some paths * Even more changes to yarnlock missing in previous commit * Include codegen file for typings * Add files to get parity for datahub-web and current OS datahub-midtier * Add in typo fix from previous commit - change to proper license * Implement proper OS fix for person entity picture url * Workarounds for open source DH issues * Fixes institutional memory api and removes unopensourced tabs for datasets * Fixes search dataset deprecation and user search issue as a result of changes * Remove internal only options in the avatar menu
54 lines
1.8 KiB
Handlebars
54 lines
1.8 KiB
Handlebars
<ModalDialog
|
|
@overlayClass="notification-overlay"
|
|
@containerClassNames="{{this.baseModalClass}}__modal notification-confirm-modal"
|
|
@onClose={{action @onCloseModal}}
|
|
>
|
|
<header class="notification-confirm-modal__header {{this.baseModalClass}}__header">
|
|
<h3 class="{{this.baseModalClass}}__title">
|
|
View change log
|
|
</h3>
|
|
<button
|
|
type="button"
|
|
class="{{this.baseModalClass}}__close"
|
|
{{action @onCloseModal}}
|
|
>
|
|
×
|
|
</button>
|
|
</header>
|
|
<section class="notification-confirm-modal__content {{this.baseModalClass}}__content">
|
|
<div class="{{this.baseModalClass}}__main">
|
|
<p class="{{this.baseModalClass}}__item">
|
|
<strong>Created By</strong>
|
|
</p>
|
|
<p class="{{this.baseModalClass}}__item">
|
|
<strong>Date Added</strong>
|
|
</p>
|
|
<p class="{{this.baseModalClass}}__item">
|
|
<strong>Notification</strong>
|
|
</p>
|
|
<p class="{{this.baseModalClass}}__item">
|
|
<strong>Audience</strong>
|
|
</p>
|
|
</div>
|
|
<div class="{{this.baseModalClass}}__main">
|
|
<p class="{{this.baseModalClass}}__item">
|
|
{{@changeLog.createdBy}}
|
|
</p>
|
|
<p class="{{this.baseModalClass}}__item">
|
|
{{moment-format (unix @changeLog.dateAdded) "MM/DD/YYYY"}}
|
|
</p>
|
|
<p class="{{this.baseModalClass}}__item">
|
|
{{this.notificationText}}
|
|
</p>
|
|
<p class="{{this.baseModalClass}}__item {{this.baseModalClass}}__item-highlighted">
|
|
{{this.audienceText}}
|
|
</p>
|
|
</div>
|
|
</section>
|
|
<hr class="{{this.baseModalClass}}__divider"/>
|
|
<ChangeManagement::ReadOnlyEmailContent
|
|
@type={{@changeLog.type}}
|
|
@subject={{@changeLog.subject}}
|
|
@content={{@changeLog.content}}
|
|
/>
|
|
</ModalDialog> |