⚠ This page is served via a proxy. Original site: https://github.com
This service does not collect credentials or authentication data.
Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions src/renderer/components/filters/UserTypeFilter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@ export const UserTypeFilter: FC = () => {
<Stack direction="vertical" gap="condensed">
<Stack direction="horizontal" gap="condensed">
<PersonIcon size={Size.SMALL} />
User
{userTypeFilter.FILTER_TYPES['User'].title}
</Stack>
<Stack direction="horizontal" gap="condensed">
<DependabotIcon size={Size.SMALL} />
Bot accounts such as @dependabot, @renovate, @netlify, etc
{userTypeFilter.FILTER_TYPES['Bot'].description}
</Stack>
<Stack direction="horizontal" gap="condensed">
<OrganizationIcon size={Size.SMALL} />
Organization
{userTypeFilter.FILTER_TYPES['Organization'].title}
</Stack>
</Stack>
</div>
Expand Down
4 changes: 2 additions & 2 deletions src/renderer/utils/api/graphql/generated/graphql.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9416,7 +9416,7 @@ export type Issue = Assignable & Closable & Comment & Deletable & Labelable & Lo
*/
projectCards: ProjectCardConnection;
/** List of project items associated with this issue. */
projectItems: ProjectV2ItemConnection;
projectItems?: Maybe<ProjectV2ItemConnection>;
/** Find a project by number. */
projectV2?: Maybe<ProjectV2>;
/** A list of projects under the owner. */
Expand Down Expand Up @@ -21362,7 +21362,7 @@ export type PullRequest = Assignable & Closable & Comment & Labelable & Lockable
*/
projectCards: ProjectCardConnection;
/** List of project items associated with this pull request. */
projectItems: ProjectV2ItemConnection;
projectItems?: Maybe<ProjectV2ItemConnection>;
/** Find a project by number. */
projectV2?: Maybe<ProjectV2>;
/** A list of projects under the owner. */
Expand Down
3 changes: 2 additions & 1 deletion src/renderer/utils/notifications/filters/userType.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ const USER_TYPE_DETAILS: Record<UserType, TypeDetails> = {
},
Bot: {
title: 'Bot',
description: 'Bot accounts such as @dependabot, @renovate, @netlify, etc',
description:
'Bot accounts such as @copilot, @dependabot, @renovate, @netlify, etc',
},
Organization: {
title: 'Organization',
Expand Down