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
1 change: 1 addition & 0 deletions apps/web/ce/components/gantt-chart/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
export * from "./dependency";
export * from "./layers";
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import type { FC } from "react";

type Props = {
itemsContainerWidth: number;
blockCount: number;
};

export const GanttAdditionalLayers: FC<Props> = () => null;
Comment thread
vamsikrishnamathala marked this conversation as resolved.
1 change: 1 addition & 0 deletions apps/web/ce/components/gantt-chart/layers/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { GanttAdditionalLayers } from "./additional-layers";
9 changes: 4 additions & 5 deletions apps/web/core/components/editor/sticky-editor/editor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,10 @@ import { useParseEditorContent } from "@/hooks/use-parse-editor-content";
import { useEditorFlagging } from "@/plane-web/hooks/use-editor-flagging";
import { StickyEditorToolbar } from "./toolbar";

interface StickyEditorWrapperProps
extends Omit<
Omit<ILiteTextEditorProps, "extendedEditorProps">,
"disabledExtensions" | "editable" | "flaggedExtensions" | "fileHandler" | "mentionHandler" | "getEditorMetaData"
> {
interface StickyEditorWrapperProps extends Omit<
Omit<ILiteTextEditorProps, "extendedEditorProps">,
"disabledExtensions" | "editable" | "flaggedExtensions" | "fileHandler" | "mentionHandler" | "getEditorMetaData"
> {
workspaceSlug: string;
workspaceId: string;
projectId?: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@ import { GanttChartSidebar, MonthChartView, QuarterChartView, WeekChartView } fr
// hooks
import { useTimeLineChartStore } from "@/hooks/use-timeline-chart";
// plane web components
import { TimelineDependencyPaths, TimelineDraggablePath } from "@/plane-web/components/gantt-chart";
import {
TimelineDependencyPaths,
TimelineDraggablePath,
GanttAdditionalLayers,
} from "@/plane-web/components/gantt-chart";
import { GanttChartRowList } from "@/plane-web/components/gantt-chart/blocks/block-row-list";
import { GanttChartBlocksList } from "@/plane-web/components/gantt-chart/blocks/blocks-list";
import { IssueBulkOperationsRoot } from "@/plane-web/components/issues/bulk-operations";
Expand Down Expand Up @@ -212,6 +216,7 @@ export const GanttChartMainContent = observer(function GanttChartMainContent(pro
/>
<TimelineDependencyPaths isEpic={isEpic} />
<TimelineDraggablePath />
<GanttAdditionalLayers itemsContainerWidth={itemsContainerWidth} blockCount={blockIds.length} />
<GanttChartBlocksList
blockIds={blockIds}
blockToRender={blockToRender}
Expand Down
18 changes: 9 additions & 9 deletions apps/web/core/store/base-command-palette.store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,15 +89,15 @@ export abstract class BaseCommandPaletteStore implements IBaseCommandPaletteStor
protected getCoreModalsState(): boolean {
return Boolean(
this.isCreateIssueModalOpen ||
this.isCreateCycleModalOpen ||
this.isCreateProjectModalOpen ||
this.isCreateModuleModalOpen ||
this.isCreateViewModalOpen ||
store.powerK.isShortcutsListModalOpen ||
this.isBulkDeleteIssueModalOpen ||
this.isDeleteIssueModalOpen ||
this.createPageModal.isOpen ||
this.allStickiesModal
this.isCreateCycleModalOpen ||
this.isCreateProjectModalOpen ||
this.isCreateModuleModalOpen ||
this.isCreateViewModalOpen ||
store.powerK.isShortcutsListModalOpen ||
this.isBulkDeleteIssueModalOpen ||
this.isDeleteIssueModalOpen ||
this.createPageModal.isOpen ||
this.allStickiesModal
);
}
// computedFn
Expand Down
3 changes: 2 additions & 1 deletion apps/web/core/store/issue/issue-details/root.store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ export type TIssueCrudOperationState = {
};

export interface IIssueDetail
extends IIssueStoreActions,
extends
IIssueStoreActions,
IIssueReactionStoreActions,
IIssueLinkStoreActions,
IIssueSubIssuesStoreActions,
Expand Down
Loading