Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
Greenlight
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Arbeitsgruppe Hardwarenahe IT-Systeme
Greenlight
Commits
63a86e31
Unverified
Commit
63a86e31
authored
Nov 1, 2023
by
Ahmad Farhat
Committed by
GitHub
Nov 1, 2023
Browse files
Options
Downloads
Patches
Plain Diff
Fix double logo on require authentication view (#5490)
* Fix double logo on require authentication view * eslint
parent
6486fee7
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
app/javascript/components/rooms/room/join/RequireAuthentication.jsx
+23
-29
23 additions, 29 deletions
...ript/components/rooms/room/join/RequireAuthentication.jsx
with
23 additions
and
29 deletions
app/javascript/components/rooms/room/join/RequireAuthentication.jsx
+
23
−
29
View file @
63a86e31
...
@@ -19,7 +19,6 @@ import { Button, Form } from 'react-bootstrap';
...
@@ -19,7 +19,6 @@ import { Button, Form } from 'react-bootstrap';
import
Card
from
'
react-bootstrap/Card
'
;
import
Card
from
'
react-bootstrap/Card
'
;
import
{
useTranslation
}
from
'
react-i18next
'
;
import
{
useTranslation
}
from
'
react-i18next
'
;
import
PropTypes
from
'
prop-types
'
;
import
PropTypes
from
'
prop-types
'
;
import
Logo
from
'
../../../shared_components/Logo
'
;
import
useEnv
from
'
../../../../hooks/queries/env/useEnv
'
;
import
useEnv
from
'
../../../../hooks/queries/env/useEnv
'
;
import
ButtonLink
from
'
../../../shared_components/utilities/ButtonLink
'
;
import
ButtonLink
from
'
../../../shared_components/utilities/ButtonLink
'
;
...
@@ -28,10 +27,6 @@ export default function RequireAuthentication({ path }) {
...
@@ -28,10 +27,6 @@ export default function RequireAuthentication({ path }) {
const
{
data
:
env
}
=
useEnv
();
const
{
data
:
env
}
=
useEnv
();
return
(
return
(
<
div
className
=
"vertical-center"
>
<
div
className
=
"text-center pb-4"
>
<
Logo
/>
</
div
>
<
Card
className
=
"col-xl-6 col-lg-7 col-md-9 col-10 mx-auto p-0 border-0 card-shadow text-center"
>
<
Card
className
=
"col-xl-6 col-lg-7 col-md-9 col-10 mx-auto p-0 border-0 card-shadow text-center"
>
<
Card
.
Body
className
=
"pt-4 px-5"
>
<
Card
.
Body
className
=
"pt-4 px-5"
>
<
p
className
=
"mb-0"
>
{
t
(
'
room.settings.require_signed_in_message
'
)
}
</
p
>
<
p
className
=
"mb-0"
>
{
t
(
'
room.settings.require_signed_in_message
'
)
}
</
p
>
...
@@ -55,7 +50,6 @@ export default function RequireAuthentication({ path }) {
...
@@ -55,7 +50,6 @@ export default function RequireAuthentication({ path }) {
}
}
</
Card
.
Footer
>
</
Card
.
Footer
>
</
Card
>
</
Card
>
</
div
>
);
);
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment