Merge branch 'develop' of github.com:makeplane/plane into develop

This commit is contained in:
NarayanBavisetti 2023-12-01 11:28:32 +05:30
commit 14f9f65a33
6 changed files with 6 additions and 17 deletions

View File

@ -1,11 +0,0 @@
<!DOCTYPE html>
<html>
<p>
Dear {{first_name}},<br /><br />
Welcome! Your account has been created.
Verify your email by clicking on the link below <br />
{{verification_url}}
successfully.<br /><br />
</p>
</html>

View File

@ -1082,7 +1082,7 @@
><span style="font-size: 13px"
>, and </span
><a
href="https://github.com/makeplane/plane/pulls"
href="https://github.com/makeplane/plane/issues"
title="Plane's GitHub conversations"
target="_blank"
style="

View File

@ -1071,7 +1071,7 @@
><span style="font-size: 13px"
>, and </span
><a
href="https://github.com/makeplane/plane/pulls"
href="https://github.com/makeplane/plane/issues"
title="Plane's GitHub conversations"
target="_blank"
style="

View File

@ -102,7 +102,7 @@ const GroupByKanBan: React.FC<IGroupByKanBan> = observer((props) => {
)}
<div
className={`min-h-[150px] h-full ${
className={`min-h-[150px] ${
verticalAlignPosition(_list) ? `w-[0px] overflow-hidden` : `w-full transition-all`
}`}
>

View File

@ -15,7 +15,7 @@ import { createIssuePayload } from "helpers/issue.helper";
import { IIssue, IProject } from "types";
const Inputs = (props: any) => {
const { register, setFocus, projectDetails } = props;
const { register, setFocus, projectDetail } = props;
useEffect(() => {
setFocus("name");
@ -23,7 +23,7 @@ const Inputs = (props: any) => {
return (
<div>
<h4 className="text-xs font-medium leading-5 text-custom-text-300">{projectDetails?.identifier ?? "..."}</h4>
<h4 className="text-xs font-medium leading-5 text-custom-text-300">{projectDetail?.identifier ?? "..."}</h4>
<input
autoComplete="off"
placeholder="Issue Title"

View File

@ -84,7 +84,7 @@ export const SpreadsheetView: React.FC<Props> = observer((props) => {
<div className="h-full w-full flex flex-col">
<div
ref={containerRef}
className="flex max-h-full h-full overflow-y-auto divide-x-[0.5px] divide-custom-border-200 horizontal-scroll-enable"
className="flex overflow-y-auto divide-x-[0.5px] divide-custom-border-200 horizontal-scroll-enable"
>
{issues && issues.length > 0 ? (
<>