forked from github/plane
fix: workspace view redirection fix, style: spreadsheet view shadow scroll fix (#2314)
* fix: workspace view redirection fix * style: spreadsheet view scroll shadow fix
This commit is contained in:
parent
843ba5bb63
commit
f73135c504
@ -500,9 +500,10 @@ export const SpreadsheetView: React.FC<Props> = ({
|
|||||||
<>
|
<>
|
||||||
<div className="sticky left-0 w-[28rem] z-[2]">
|
<div className="sticky left-0 w-[28rem] z-[2]">
|
||||||
<div
|
<div
|
||||||
className={`relative flex flex-col h-max w-full bg-custom-background-100 z-[2] ${
|
className="relative flex flex-col h-max w-full bg-custom-background-100 z-[2]"
|
||||||
isScrolled ? "shadow-r shadow-custom-shadow-xs" : ""
|
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">
|
<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 && (
|
{currentViewProperties.key && (
|
||||||
|
@ -52,7 +52,7 @@ export const CreateUpdateWorkspaceViewModal: React.FC<Props> = ({
|
|||||||
mutate(WORKSPACE_VIEWS_LIST(workspaceSlug as string));
|
mutate(WORKSPACE_VIEWS_LIST(workspaceSlug as string));
|
||||||
handleClose();
|
handleClose();
|
||||||
|
|
||||||
router.replace(`/${workspaceSlug}/workspace-views/issues?viewId=${res.id}`);
|
router.replace(`/${workspaceSlug}/workspace-views/issues?globalViewId=${res.id}`);
|
||||||
|
|
||||||
setToastAlert({
|
setToastAlert({
|
||||||
type: "success",
|
type: "success",
|
||||||
|
Loading…
Reference in New Issue
Block a user