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
624d0361
Commit
624d0361
authored
Nov 07, 2018
by
Constance Okoghenun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Resolved CE -> EE conflicts for issue board card redesign
parent
bb3b62cc
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
31 deletions
+0
-31
app/assets/javascripts/boards/components/issue_card_inner.vue
...assets/javascripts/boards/components/issue_card_inner.vue
+0
-9
app/assets/javascripts/boards/components/issue_time_estimate.vue
...ets/javascripts/boards/components/issue_time_estimate.vue
+0
-5
app/assets/stylesheets/pages/boards.scss
app/assets/stylesheets/pages/boards.scss
+0
-3
app/controllers/boards/issues_controller.rb
app/controllers/boards/issues_controller.rb
+0
-14
No files found.
app/assets/javascripts/boards/components/issue_card_inner.vue
View file @
624d0361
...
...
@@ -3,10 +3,7 @@ import { GlTooltipDirective } from '@gitlab-org/gitlab-ui';
import
{
sprintf
,
__
}
from
'
~/locale
'
;
import
Icon
from
'
~/vue_shared/components/icon.vue
'
;
import
TooltipOnTruncate
from
'
~/vue_shared/components/tooltip_on_truncate.vue
'
;
<<<<<<<
HEAD
import
IssueCardWeight
from
'
ee/boards/components/issue_card_weight.vue
'
;
=======
>>>>>>>
upstream
/
master
import
UserAvatarLink
from
'
../../vue_shared/components/user_avatar/user_avatar_link.vue
'
;
import
eventHub
from
'
../eventhub
'
;
import
IssueDueDate
from
'
./issue_due_date.vue
'
;
...
...
@@ -19,10 +16,7 @@ export default {
UserAvatarLink
,
TooltipOnTruncate
,
IssueDueDate
,
<<<<<<<
HEAD
IssueCardWeight
,
=======
>>>>>>>
upstream
/
master
IssueTimeEstimate
,
},
directives
:
{
...
...
@@ -222,13 +216,10 @@ export default {
/><issue-time-estimate
v-if=
"issue.timeEstimate"
:estimate=
"issue.timeEstimate"
<<<<<<<
HEAD
/><issue-card-weight
v-if=
"issue.weight"
:weight=
"issue.weight"
@
click=
"filterByWeight(issue.weight)"
=======
>
>>>>>> upstream/master
/>
</span>
</div>
...
...
app/assets/javascripts/boards/components/issue_time_estimate.vue
View file @
624d0361
...
...
@@ -41,12 +41,7 @@ export default {
placement=
"bottom"
class=
"js-issue-time-estimate"
>
<<<<<<<
HEAD
<span
class=
"bold"
>
{{
__
(
'
Time estimate
'
)
}}
</span>
<br
/>
=======
<span
class=
"bold d-block"
>
{{
__
(
'
Time estimate
'
)
}}
</span>
>>>>>>> upstream/master
{{
title
}}
</gl-tooltip>
</span>
...
...
app/assets/stylesheets/pages/boards.scss
View file @
624d0361
...
...
@@ -722,7 +722,6 @@
}
}
<<<<<<<
HEAD
.boards-switcher
{
padding-right
:
10px
;
}
...
...
@@ -766,8 +765,6 @@
}
}
=======
>>>>>>>
upstream
/
master
.board-card-info
{
color
:
$gl-text-color-secondary
;
white-space
:
nowrap
;
...
...
app/controllers/boards/issues_controller.rb
View file @
624d0361
...
...
@@ -105,21 +105,7 @@ module Boards
end
def
serialize_as_json
(
resource
)
<<<<<<<
HEAD
resource
.
as_json
(
only:
[
:id
,
:iid
,
:project_id
,
:title
,
:confidential
,
:due_date
,
:relative_position
,
:weight
,
:time_estimate
],
labels:
true
,
issue_endpoints:
true
,
include_full_project_path:
board
.
group_board?
,
include:
{
project:
{
only:
[
:id
,
:path
]
},
assignees:
{
only:
[
:id
,
:name
,
:username
],
methods:
[
:avatar_url
]
},
milestone:
{
only:
[
:id
,
:title
]
}
}
)
=======
serializer
.
represent
(
resource
,
serializer:
'board'
,
include_full_project_path:
board
.
group_board?
)
>>>>>>>
upstream
/
master
end
def
whitelist_query_limiting
...
...
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