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
454214ab
Commit
454214ab
authored
Jul 27, 2018
by
Phil Hughes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
resolve conflicts in `app/assets/javascripts/boards/index.js`
parent
f7d7ff3a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
56 deletions
+0
-56
app/assets/javascripts/boards/index.js
app/assets/javascripts/boards/index.js
+0
-56
No files found.
app/assets/javascripts/boards/index.js
View file @
454214ab
...
...
@@ -178,7 +178,6 @@ export default () => {
});
}
},
<<<<<<<
HEAD
updateWeight
(
newWeight
,
id
)
{
const
{
issue
}
=
Store
.
detail
;
if
(
issue
.
id
===
id
&&
issue
.
sidebarInfoEndpoint
)
{
...
...
@@ -197,8 +196,6 @@ export default () => {
});
}
},
=======
>>>>>>>
upstream
/
master
},
});
...
...
@@ -213,7 +210,6 @@ export default () => {
},
});
<<<<<<<
HEAD
const
configEl
=
document
.
querySelector
(
'
.js-board-config
'
);
if
(
configEl
)
{
...
...
@@ -287,36 +283,6 @@ export default () => {
return
''
;
},
},
=======
const
issueBoardsModal
=
document
.
getElementById
(
'
js-add-issues-btn
'
);
if
(
issueBoardsModal
)
{
gl
.
IssueBoardsModalAddBtn
=
new
Vue
({
el
:
issueBoardsModal
,
mixins
:
[
modalMixin
],
data
()
{
return
{
modal
:
ModalStore
.
store
,
store
:
Store
.
state
,
canAdminList
:
this
.
$options
.
el
.
hasAttribute
(
'
data-can-admin-list
'
),
};
},
computed
:
{
disabled
()
{
if
(
!
this
.
store
)
{
return
true
;
}
return
!
this
.
store
.
lists
.
filter
(
list
=>
!
list
.
preset
).
length
;
},
tooltipTitle
()
{
if
(
this
.
disabled
)
{
return
'
Please add a list to your board first
'
;
}
return
''
;
},
},
>>>>>>>
upstream
/
master
watch
:
{
disabled
()
{
this
.
updateTooltip
();
...
...
@@ -342,7 +308,6 @@ export default () => {
this
.
toggleModal
(
true
);
}
},
<<<<<<<
HEAD
},
template
:
`
<div class="board-extra-actions">
...
...
@@ -411,25 +376,4 @@ export default () => {
'
boards-selector
'
:
gl
.
issueBoards
.
BoardsSelector
,
},
});
=======
},
template
:
`
<div class="board-extra-actions">
<button
class="btn btn-create prepend-left-10"
type="button"
data-placement="bottom"
ref="addIssuesButton"
:class="{ 'disabled': disabled }"
:title="tooltipTitle"
:aria-disabled="disabled"
v-if="canAdminList"
@click="openModal">
Add issues
</button>
</div>
`
,
});
}
>>>>>>>
upstream
/
master
};
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