Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
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
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
0037cd80
Commit
0037cd80
authored
Jul 08, 2021
by
Tom Quirk
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove deprecated_project_avatar in web ide
parent
6a0c364b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
app/assets/javascripts/ide/components/ide_project_header.vue
app/assets/javascripts/ide/components/ide_project_header.vue
+7
-3
No files found.
app/assets/javascripts/ide/components/ide_project_header.vue
View file @
0037cd80
<
script
>
import
ProjectAvatar
Default
from
'
~/vue_shared/components/deprecated_project_avatar/default
.vue
'
;
import
ProjectAvatar
from
'
~/vue_shared/components/project_avatar
.vue
'
;
export
default
{
components
:
{
ProjectAvatar
Default
,
ProjectAvatar
,
},
props
:
{
project
:
{
...
...
@@ -17,7 +17,11 @@ export default {
<
template
>
<div
class=
"context-header ide-context-header"
>
<a
:href=
"project.web_url"
:title=
"s__('IDE|Go to project')"
>
<project-avatar-default
:project=
"project"
:size=
"48"
/>
<project-avatar
:project-name=
"project.name"
:project-avatar-url=
"project.avatar_url"
:size=
"48"
/>
<span
class=
"ide-sidebar-project-title"
>
<span
class=
"sidebar-context-title"
>
{{
project
.
name
}}
</span>
<span
...
...
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