Commit f0edde6 1 parent 8d58277 commit f0edde6 Copy full SHA for f0edde6
File tree 6 files changed +11
-360
lines changed
6 files changed +11
-360
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,6 @@ import OAuthSignin from "~/pages/signin/OAuthSignin";
33
33
import WorkflowList from "~/pages/workflowList/WorkflowList" ;
34
34
import WorkflowDetails from "~/pages/workflowDetails/WorkflowDetails" ;
35
35
import Profile from "~/pages/profile/Profile" ;
36
- import PrivacyNotice from "~/pages/privacyNotice/PrivacyNotice" ;
37
36
import Status from "~/pages/status/Status" ;
38
37
import LaunchOnReana from "~/pages/launchOnReana/LaunchOnReana" ;
39
38
import NotFound from "~/pages/error/NotFound" ;
@@ -81,7 +80,6 @@ export default function App() {
81
80
}
82
81
/>
83
82
< Route path = "/confirm/:token" element = { < Confirm /> } />
84
- < Route path = "/privacy-notice" element = { < PrivacyNotice /> } />
85
83
< Route path = "/signin_callback" element = { < OAuthSignin /> } />
86
84
< Route
87
85
path = "/"
Original file line number Diff line number Diff line change @@ -20,11 +20,15 @@ export default function Footer() {
20
20
const config = useSelector ( getConfig ) ;
21
21
return (
22
22
< footer className = { styles [ "footer-bottom" ] } >
23
- < span >
24
- { config . cernRopo && (
25
- < Link to = "/privacy-notice" >
23
+ < span className = { styles [ "links" ] } >
24
+ { config . privacyNoticeURL && (
25
+ < a
26
+ href = { config . privacyNoticeURL }
27
+ target = "_blank"
28
+ rel = "noopener noreferrer"
29
+ >
26
30
< Icon name = "privacy" > </ Icon > Privacy notice
27
- </ Link >
31
+ </ a >
28
32
) }
29
33
</ span >
30
34
< span className = { styles [ "links" ] } >
Original file line number Diff line number Diff line change 19
19
height : 60px ;
20
20
color : $gray ;
21
21
22
- .links > a {
22
+ .links > a :not ( :first-child ) {
23
23
margin-left : 1em ;
24
24
}
25
25
}
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments