Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
project-creation
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Coscine
frontend
libraries
project-creation
Merge requests
!18
Update: Hide RESET and ARCHIVE buttons
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Update: Hide RESET and ARCHIVE buttons
Topic/608-hideButtons
into
Product/585-hideButtons
Overview
0
Commits
1
Pipelines
1
Changes
1
Merged
Marcel Nellesen
requested to merge
Topic/608-hideButtons
into
Product/585-hideButtons
4 years ago
Overview
0
Commits
1
Pipelines
1
Changes
1
Expand
(coscine/issues#608)
0
0
Merge request reports
Compare
Product/585-hideButtons
Product/585-hideButtons (base)
and
latest version
latest version
e94d6c17
1 commit,
4 years ago
1 file
+
5
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/CreateProject.vue
+
5
−
2
Options
@@ -172,15 +172,14 @@
disabled
@
click.prevent=
"clickArchive"
v-show=
"isOwner || isNewProject"
style=
"display: inline;"
>
{{ $t('archive') }}
</b-button>
<b-button
type=
"button"
variant=
"light"
id=
"project_clear_button"
@
click.prevent=
"clickClearForm"
@
click=
"$v.form.$reset"
v-show=
"isOwner || isNewProject"
style=
"display: inline;"
>
{{ $t('clearFormButton') }}
</b-button>
<DeleteModal
:projectId=
"projectId"
@@ -583,4 +582,8 @@ export default Vue.extend({
background-color
:
rgba
(
204
,
7
,
30
,
.9
);
border-radius
:
0
;
}
#project_archive_button
,
#project_clear_button
{
display
:
none
;
}
</
style
>
Loading