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

fix: link validation fix #1645

Merged
merged 7 commits into from
Jul 25, 2023
Merged

Conversation

anmolsinghbhatia
Copy link
Collaborator

fix:

  • link validation fix

@vercel
Copy link

vercel bot commented Jul 24, 2023

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
plane ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jul 25, 2023 8:17am
plane-dev ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jul 25, 2023 8:17am
plane-hot-fix ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jul 25, 2023 8:17am
plane-staging ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jul 25, 2023 8:17am

@@ -12,7 +12,7 @@ type Props = {
created_by: string;
created_by_detail: IUserLite;
metadata: any;
title: string;
title: string | null;
Copy link
Collaborator

Choose a reason for hiding this comment

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

The title cannot be null, it can be an empty string.

@@ -437,7 +437,7 @@ class ProjectIssuesServices extends APIService {
issueId: string,
data: {
metadata: any;
title: string;
title: string | null;
Copy link
Collaborator

Choose a reason for hiding this comment

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

The title cannot be null, it can be an empty string.

@@ -198,7 +198,7 @@ class ProjectIssuesServices extends APIService {
moduleId: string,
data: {
metadata: any;
title: string;
title: string | null;
Copy link
Collaborator

Choose a reason for hiding this comment

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

The title cannot be null, it can be an empty string.

@@ -62,7 +62,7 @@ export interface IIssueParent {
}

export interface IIssueLink {
title: string;
title: string | null;
Copy link
Collaborator

Choose a reason for hiding this comment

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

The title cannot be null, it can be an empty string.

@@ -96,7 +96,7 @@ export interface IIssue {
created_by_detail: IUserLite;
id: string;
metadata: any;
title: string;
title: string | null;
Copy link
Collaborator

Choose a reason for hiding this comment

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

The title cannot be null, it can be an empty string.

@@ -32,7 +32,7 @@ export interface IModule {
created_by_detail: IUserLite;
id: string;
metadata: any;
title: string;
title: string | null;
Copy link
Collaborator

Choose a reason for hiding this comment

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

The title cannot be null, it can be an empty string.

@@ -74,7 +74,7 @@ export interface ModuleIssueResponse {
}

export type ModuleLink = {
title: string;
title: string | null;
Copy link
Collaborator

Choose a reason for hiding this comment

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

The title cannot be null, it can be an empty string.

@pablohashescobar pablohashescobar merged commit 2229d8d into develop Jul 25, 2023
5 of 6 checks passed
@aaryan610 aaryan610 deleted the fix/issue_link_validation branch July 26, 2023 19:26
@aaryan610 aaryan610 restored the fix/issue_link_validation branch July 26, 2023 19:26
@aaryan610 aaryan610 deleted the fix/issue_link_validation branch July 26, 2023 19:26
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants