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

[Datahub] Display record status #750

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
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
@@ -1,9 +1,19 @@
<p
class="text-[28px] text-title text-center mb-6 font-title sm:text-left"
translate
>
record.metadata.about
</p>
<div class="flex flex-row justify-between">
<p
class="text-[28px] text-title text-center mb-6 font-title sm:text-left"
translate
>
record.metadata.about
</p>
<div *ngIf="metadata.status" class="flex items-start pt-3 pr-4">
<span
class="inline-flex items-center justify-center px-2 py-1 text-13 uppercase font-medium leading-none bg-primary text-white rounded opacity-40"
translate
>
domain.record.status.{{ metadata.status }}
</span>
</div>
</div>
<div class="mb-6 md-description sm:mb-4 sm:pr-16">
<gn-ui-content-ghost ghostClass="h-32" [showContent]="fieldReady('abstract')">
<gn-ui-max-lines [maxLines]="6" *ngIf="metadata.abstract">
Expand Down