Skip to content

Commit

Permalink
fix: workspace view redirection fix, style: spreadsheet view shadow s…
Browse files Browse the repository at this point in the history
…croll fix (#2314)

* fix: workspace view redirection fix

* style: spreadsheet view scroll shadow fix
  • Loading branch information
anmolsinghbhatia authored Sep 29, 2023
1 parent 843ba5b commit f73135c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -500,9 +500,10 @@ export const SpreadsheetView: React.FC<Props> = ({
<>
<div className="sticky left-0 w-[28rem] z-[2]">
<div
className={`relative flex flex-col h-max w-full bg-custom-background-100 z-[2] ${
isScrolled ? "shadow-r shadow-custom-shadow-xs" : ""
}`}
className="relative flex flex-col h-max w-full bg-custom-background-100 z-[2]"
style={{
boxShadow: isScrolled ? "8px -9px 12px rgba(0, 0, 0, 0.15)" : "",
}}
>
<div className="flex items-center text-sm font-medium z-[2] h-11 w-full sticky top-0 bg-custom-background-90 border border-l-0 border-custom-border-100">
{currentViewProperties.key && (
Expand Down
2 changes: 1 addition & 1 deletion web/components/workspace/views/modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export const CreateUpdateWorkspaceViewModal: React.FC<Props> = ({
mutate(WORKSPACE_VIEWS_LIST(workspaceSlug as string));
handleClose();

router.replace(`/${workspaceSlug}/workspace-views/issues?viewId=${res.id}`);
router.replace(`/${workspaceSlug}/workspace-views/issues?globalViewId=${res.id}`);

setToastAlert({
type: "success",
Expand Down

2 comments on commit f73135c

@vercel
Copy link

@vercel vercel bot commented on f73135c Sep 29, 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-sh-dev – ./space/

plane-space-dev.vercel.app
plane-sh-dev-plane.vercel.app
plane-sh-dev-git-develop-plane.vercel.app

@vercel
Copy link

@vercel vercel bot commented on f73135c Sep 29, 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-dev – ./web/

plane-dev-plane.vercel.app
plane-dev.vercel.app
plane-dev-git-develop-plane.vercel.app

Please sign in to comment.