-
Notifications
You must be signed in to change notification settings - Fork 6
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
test: remove user from a project (DEV-2328) #2067
base: main
Are you sure you want to change the base?
Conversation
<span *ngIf="projectUuid" data-cy="member-count" | ||
>{{ list.length | i18nPlural : itemPluralMapping['member'] }}</span | ||
> | ||
<span *ngIf="!projectUuid" data-cy="user-count" | ||
>{{ list.length | i18nPlural : itemPluralMapping['user'] }}</span | ||
> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Question about formatting. Is this guys what you have agreed on or just a Prettier bug? I see it looks different and weird for me than in other files touched in this PR.
<tag attributes
>value</tag>
>
vs what is in below changes and what looks more readable:
<tag
attributes>
<tag2>value</tag2>
</tag>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mpro7 It just exceeds 120 characters in a line which is the rule of prettier
resolves DEV-2328