Skip to content

Commit

Permalink
Merge pull request #402 from makeplane/develop
Browse files Browse the repository at this point in the history
dev: promote to staging
  • Loading branch information
vamsi authored Mar 8, 2023
2 parents c9252c9 + 981a246 commit 2e1c113
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 4 deletions.
6 changes: 3 additions & 3 deletions apps/app/components/core/board-view/single-board.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -104,14 +104,14 @@ export const SingleBoard: React.FC<Props> = ({
<div
className={`absolute ${
snapshot.isDraggingOver ? "block" : "hidden"
} pointer-events-none top-0 left-0 z-[99999998] h-full w-full bg-gray-100 opacity-50`}
} pointer-events-none top-0 left-0 z-[99] h-full w-full bg-gray-100 opacity-50`}
/>
<div
className={`absolute ${
snapshot.isDraggingOver ? "block" : "hidden"
} pointer-events-none top-1/2 left-1/2 z-[99999999] -translate-y-1/2 -translate-x-1/2 whitespace-nowrap rounded bg-white p-2 text-xs`}
} pointer-events-none top-1/2 left-1/2 z-[99] -translate-y-1/2 -translate-x-1/2 whitespace-nowrap rounded bg-white p-2 text-xs`}
>
This board is ordered by {replaceUnderscoreIfSnakeCase(orderBy ?? "")}
This board is ordered by {replaceUnderscoreIfSnakeCase(orderBy ?? "created_at")}
</div>
</>
)}
Expand Down
2 changes: 1 addition & 1 deletion apps/app/components/core/board-view/single-issue.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ export const SingleBoardIssue: React.FC<Props> = ({
</div>
)}
<h5
className="text-sm group-hover:text-theme"
className="break-all text-sm group-hover:text-theme"
style={{ lineClamp: 3, WebkitLineClamp: 3 }}
>
{truncateText(issue.name, 100)}
Expand Down
1 change: 1 addition & 0 deletions apps/app/components/issues/sidebar-select/assignee.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ export const SidebarAssigneeSelect: React.FC<Props> = ({ value, onChange, userAu
}
options={options}
onChange={onChange}
position="right"
multiple
disabled={isNotAllowed}
/>
Expand Down
1 change: 1 addition & 0 deletions apps/app/components/issues/sidebar-select/cycle.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ export const SidebarCycleSelect: React.FC<Props> = ({
: handleCycleChange(cycles?.find((c) => c.id === value) as ICycle);
}}
width="w-full"
position="right"
disabled={isNotAllowed}
>
{cycles ? (
Expand Down
1 change: 1 addition & 0 deletions apps/app/components/issues/sidebar-select/module.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ export const SidebarModuleSelect: React.FC<Props> = ({
: handleModuleChange(modules?.find((m) => m.id === value) as IModule);
}}
width="w-full"
position="right"
disabled={isNotAllowed}
>
{modules ? (
Expand Down
1 change: 1 addition & 0 deletions apps/app/components/issues/sidebar-select/priority.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ export const SidebarPrioritySelect: React.FC<Props> = ({ value, onChange, userAu
value={value}
onChange={onChange}
width="w-full"
position="right"
disabled={isNotAllowed}
>
{PRIORITIES.map((option) => (
Expand Down
1 change: 1 addition & 0 deletions apps/app/components/issues/sidebar-select/state.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ export const SidebarStateSelect: React.FC<Props> = ({ value, onChange, userAuth
value={value}
onChange={onChange}
width="w-full"
position="right"
disabled={isNotAllowed}
>
{states ? (
Expand Down

2 comments on commit 2e1c113

@vercel
Copy link

@vercel vercel bot commented on 2e1c113 Mar 8, 2023

Choose a reason for hiding this comment

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

@vercel
Copy link

@vercel vercel bot commented on 2e1c113 Mar 8, 2023

Choose a reason for hiding this comment

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

Successfully deployed to the following URLs:

plane – ./apps/app

app.plane.so
plane-caravel.vercel.app
plane-git-master-caravel.vercel.app
plane-theta.vercel.app

Please sign in to comment.