Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
UI
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
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
Coscine
frontend
apps
UI
Merge requests
!333
Draft: New: Data Publication Request Intro Page
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Closed
Draft: New: Data Publication Request Intro Page
Issue/2401-advisoryServiceUI1
into
dev
Overview
1
Commits
1
Pipelines
1
Changes
7
Closed
Benedikt Heinrichs
requested to merge
Issue/2401-advisoryServiceUI1
into
dev
1 year ago
Overview
1
Commits
1
Pipelines
1
Changes
7
DON'T MERGE YET!!
https://git.rwth-aachen.de/coscine/issues/-/issues/2401
Edited
1 year ago
by
Benedikt Heinrichs
0
0
Merge request reports
Compare
dev
dev (base)
and
latest version
latest version
adb2396d
1 commit,
1 year ago
7 files
+
62
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
7
src/components/elements/SidebarMenu.vue
+
18
−
1
View file @ adb2396d
Edit in single-file editor
Open in Web IDE
Show full file
@@ -91,7 +91,7 @@ export default defineComponent({
},
projectMenu
():
Array
<
SidebarItem
>
{
if
(
this
.
project
&&
this
.
project
.
slug
)
{
return
[
const
projectItems
=
[
{
href
:
{
name
:
"
project-page
"
,
@@ -111,6 +111,23 @@ export default defineComponent({
},
},
];
if
(
this
.
currentUserRole
&&
this
.
currentUserRole
.
displayName
===
"
Owner
"
)
{
projectItems
.
push
({
href
:
{
name
:
"
project-data-publication
"
,
params
:
{
slug
:
this
.
project
.
slug
},
},
title
:
this
.
$tc
(
"
sidebar.projectDataPublication
"
).
toString
(),
icon
:
"
bi bi-file-earmark-arrow-up
"
,
attributes
:
{
title
:
this
.
$tc
(
"
sidebar.projectDataPublication
"
).
toString
(),
},
});
}
return
projectItems
;
}
return
[];
},
Loading