forked from github/plane
c16a5b9b71
* restructure the logic to avoid throwing error if any dat is not found * updated files for previous commit * fix build errors * remove throwing error if userId is undefined * optionally chain display_name property to fix sentry issues * add ooptional check * change issue action logic to increase code maintainability and make sure to send only the updated date while updating the issue * fix issue updation bugs * fix module issues build error * fix runtime errors
11 lines
449 B
TypeScript
11 lines
449 B
TypeScript
import React from "react";
|
|
import { observer } from "mobx-react-lite";
|
|
// mobx store
|
|
import { EIssuesStoreType } from "constants/issue";
|
|
import { ProjectIssueQuickActions } from "../../quick-action-dropdowns";
|
|
import { BaseSpreadsheetRoot } from "../base-spreadsheet-root";
|
|
|
|
export const ProjectSpreadsheetLayout: React.FC = observer(() => (
|
|
<BaseSpreadsheetRoot QuickActions={ProjectIssueQuickActions} storeType={EIssuesStoreType.PROJECT} />
|
|
));
|