mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
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={`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 && (
|
||||
|
@ -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",
|
||||
|
Loading…
Reference in New Issue
Block a user