Skip to content

Commit 868aba8

Browse files
authored
Fix/ang-872 - Fixed condition for components (#549)
* fix(ang-872): fixed double click component actions issue * fix(ang-872): fixed conditions
1 parent a0ddc81 commit 868aba8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/features/project/overview/components/overview-components/overview-components.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ <h2 class="flex align-items-center gap-2">
2424
<a class="component-title" [href]="component.id">{{ component.title }}</a>
2525
</h2>
2626

27-
@if (!isCurrentUserContributor(component)) {
27+
@if (isCurrentUserContributor(component)) {
2828
<div>
2929
<p-button
3030
severity="contrast"

0 commit comments

Comments
 (0)