mirror of
https://github.com/makeplane/plane.git
synced 2026-02-16 03:42:17 -06:00
fix: lint errors
This commit is contained in:
@@ -125,7 +125,7 @@ export interface IEditorProps {
|
||||
onEnterKeyPress?: (e?: any) => void;
|
||||
placeholder?: string | ((isFocused: boolean, value: string) => string);
|
||||
tabIndex?: number;
|
||||
value?: string | null;
|
||||
value?: string | null;
|
||||
}
|
||||
export interface ILiteTextEditor extends IEditorProps {
|
||||
extensions?: any[];
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { TFileEntityInfo, TFileSignedURLResponse } from "@plane/types";
|
||||
import { API_BASE_URL } from "@plane/constants";
|
||||
import { TFileEntityInfo, TFileSignedURLResponse } from "@plane/types";
|
||||
// helpers
|
||||
import { generateFileUploadPayload, getAssetIdFromUrl, getFileMetaDataForUpload } from "@/helpers/file.helper";
|
||||
// services
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import type { IInstanceInfo } from "@plane/types";
|
||||
import { API_BASE_URL } from "@plane/constants";
|
||||
import type { IInstanceInfo } from "@plane/types";
|
||||
// services
|
||||
import { APIService } from "@/services/api.service";
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { IIssueLabel } from "@plane/types";
|
||||
import { API_BASE_URL } from "@plane/constants";
|
||||
import { IIssueLabel } from "@plane/types";
|
||||
// services
|
||||
import { APIService } from "./api.service";
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import type { IProjectMember, IProjectMembership } from "@plane/types";
|
||||
import { API_BASE_URL } from "@plane/constants";
|
||||
import type { IProjectMember, IProjectMembership } from "@plane/types";
|
||||
// services
|
||||
import { APIService } from "@/services/api.service";
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { TProjectPublishSettings } from "@plane/types";
|
||||
import { API_BASE_URL } from "@plane/constants";
|
||||
import { TProjectPublishSettings } from "@plane/types";
|
||||
// services
|
||||
import { APIService } from "@/services/api.service";
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { IState } from "@plane/types";
|
||||
import { API_BASE_URL } from "@plane/constants";
|
||||
import { IState } from "@plane/types";
|
||||
// services
|
||||
import { APIService } from "./api.service";
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { IUser, TUserProfile } from "@plane/types";
|
||||
import { API_BASE_URL } from "@plane/constants";
|
||||
import { IUser, TUserProfile } from "@plane/types";
|
||||
// services
|
||||
import { APIService } from "@/services/api.service";
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { TFileMetaDataLite, TFileSignedURLResponse } from "@plane/types";
|
||||
import { API_BASE_URL } from "@plane/constants";
|
||||
import { TFileMetaDataLite, TFileSignedURLResponse } from "@plane/types";
|
||||
|
||||
/**
|
||||
* @description from the provided signed URL response, generate a payload to be used to upload the file
|
||||
|
||||
Reference in New Issue
Block a user