Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
lakeFS
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
certo
lakeFS
Commits
4fb753a5
Commit
4fb753a5
authored
May 20, 2025
by
Vladimir Bashkirtsev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed unused variables
parent
72f72135
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
2 deletions
+25
-2
lakeFS-1.32.1-suppress_ACL_warnings.patch
lakeFS-1.32.1-suppress_ACL_warnings.patch
+25
-2
No files found.
lakeFS-1.32.1-suppress_ACL_warnings.patch
View file @
4fb753a5
diff -uNr lakeFS-1.32.1/webui/src/lib/components/auth/layout.tsx lakeFS-1.32.1-suppress_ACL_warnings/webui/src/lib/components/auth/layout.tsx
--- lakeFS-1.32.1/webui/src/lib/components/auth/layout.tsx 2024-08-28 01:08:51.000000000 +0930
+++ lakeFS-1.32.1-suppress_ACL_warnings/webui/src/lib/components/auth/layout.tsx 2025-05-20 08:04:25.932852611 +0930
@@ -34,19 +34,6 @@
+++ lakeFS-1.32.1-suppress_ACL_warnings/webui/src/lib/components/auth/layout.tsx 2025-05-20 12:42:05.717215108 +0930
@@ -10,21 +10,18 @@
import {Link} from "../nav";
import {useLoginConfigContext} from "../../hooks/conf";
import {useLayoutOutletContext} from "../layout";
-import Alert from "react-bootstrap/Alert";
-import {InfoIcon} from "@primer/octicons-react";
type AuthOutletContext = [(tab: string) => void];
const rbacDismissedKey = "lakefs:ui:acl:dismissRBACAlert";
export const AuthLayout = () => {
- const [showRBACAlert, setShowRBACAlert] = useState(!window.localStorage.getItem(rbacDismissedKey));
const [activeTab, setActiveTab] = useState("credentials");
const {RBAC: rbac} = useLoginConfigContext();
const [setIsLogged] = useLayoutOutletContext();
useEffect(() => {
setIsLogged(true);
}, [setIsLogged]);
- const [displayACLDeprecation, setDisplayACLDeprecation] = useState(false);
+ const [setDisplayACLDeprecation] = useState(false);
useEffect(() => {
const listUsers = async () => {
return await auth.listUsers("", "", 2);
@@ -34,19 +31,6 @@
return (
<Container fluid="xl">
<Row className="mt-5">
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment