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

GT-2095 - Support creating & managing collections Tool Groups #695

Closed
wants to merge 11 commits into from
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
<span
class="badge badge-secondary"
*ngIf="!translation.is_published && !translation.none"
*ngIf="!translation.is_published && !translation.none && !translation['publishing-errors']"
>{{ translation.version }} | Draft</span
>
<span class="badge badge-success" *ngIf="translation.is_published"
<span class="badge badge-success" *ngIf="translation.is_published && !translation['publishing-errors']"
Copy link
Contributor

Choose a reason for hiding this comment

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

in theory if it's published it shouldn't actually have a publishing-error

Copy link
Contributor Author

@dr-bizz dr-bizz Jan 26, 2024

Choose a reason for hiding this comment

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

I pushed this to the wrong PR, so I'm going to remove it and add it to the new publishing PR #700

>{{ translation.version }} | Live</span
>
<span class="badge badge-danger" *ngIf="translation['publishing-errors']"
>1 | Error</span
>
<span class="badge badge-warning" *ngIf="translation.none">None</span>
Loading