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
f0d2c424
Commit
f0d2c424
authored
Dec 22, 2017
by
Constance Okoghenun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Port of 38869-milestone-select to EE
parent
3bb07c40
Changes
7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
215 additions
and
245 deletions
+215
-245
app/assets/javascripts/boards/components/board_sidebar.js
app/assets/javascripts/boards/components/board_sidebar.js
+1
-1
app/assets/javascripts/boards/components/milestone_select.vue
...assets/javascripts/boards/components/milestone_select.vue
+2
-2
app/assets/javascripts/dispatcher.js
app/assets/javascripts/dispatcher.js
+1
-1
app/assets/javascripts/init_issuable_sidebar.js
app/assets/javascripts/init_issuable_sidebar.js
+2
-1
app/assets/javascripts/init_legacy_filters.js
app/assets/javascripts/init_legacy_filters.js
+1
-1
app/assets/javascripts/issuable_bulk_update_sidebar.js
app/assets/javascripts/issuable_bulk_update_sidebar.js
+1
-2
app/assets/javascripts/milestone_select.js
app/assets/javascripts/milestone_select.js
+207
-237
No files found.
app/assets/javascripts/boards/components/board_sidebar.js
View file @
f0d2c424
/* eslint-disable comma-dangle, space-before-function-paren, no-new */
/* global MilestoneSelect */
import
Vue
from
'
vue
'
;
import
weight
from
'
ee/sidebar/components/weight/weight.vue
'
;
...
...
@@ -13,6 +12,7 @@ import './sidebar/remove_issue';
import
IssuableContext
from
'
../../issuable_context
'
;
import
LabelsSelect
from
'
../../labels_select
'
;
import
subscriptions
from
'
../../sidebar/components/subscriptions/subscriptions.vue
'
;
import
MilestoneSelect
from
'
../../milestone_select
'
;
const
Store
=
gl
.
issueBoards
.
BoardsStore
;
...
...
app/assets/javascripts/boards/components/milestone_select.vue
View file @
f0d2c424
<
script
>
/* global BoardService
, MilestoneSelect
*/
/* global BoardService */
import
'
~/milestone_select
'
;
import
MilestoneSelect
from
'
~/milestone_select
'
;
import
loadingIcon
from
'
~/vue_shared/components/loading_icon.vue
'
;
const
ANY_MILESTONE
=
'
Any Milestone
'
;
...
...
app/assets/javascripts/dispatcher.js
View file @
f0d2c424
...
...
@@ -5,7 +5,7 @@ import IssuableIndex from './issuable_index';
import
Milestone
from
'
./milestone
'
;
import
IssuableForm
from
'
./issuable_form
'
;
import
LabelsSelect
from
'
./labels_select
'
;
/* global MilestoneSelect */
import
MilestoneSelect
from
'
./milestone_select
'
;
import
NewBranchForm
from
'
./new_branch_form
'
;
import
NotificationsForm
from
'
./notifications_form
'
;
import
notificationsDropdown
from
'
./notifications_dropdown
'
;
...
...
app/assets/javascripts/init_issuable_sidebar.js
View file @
f0d2c424
/* eslint-disable no-new */
/* global MilestoneSelect */
import
MilestoneSelect
from
'
./milestone_select
'
;
import
LabelsSelect
from
'
./labels_select
'
;
import
IssuableContext
from
'
./issuable_context
'
;
import
Sidebar
from
'
./right_sidebar
'
;
...
...
app/assets/javascripts/init_legacy_filters.js
View file @
f0d2c424
/* eslint-disable no-new */
import
LabelsSelect
from
'
./labels_select
'
;
/* global MilestoneSelect */
import
subscriptionSelect
from
'
./subscription_select
'
;
import
UsersSelect
from
'
./users_select
'
;
import
issueStatusSelect
from
'
./issue_status_select
'
;
import
MilestoneSelect
from
'
./milestone_select
'
;
import
WeightSelect
from
'
ee/weight_select
'
;
// eslint-disable-line import/first
...
...
app/assets/javascripts/issuable_bulk_update_sidebar.js
View file @
f0d2c424
/* eslint-disable class-methods-use-this, no-new */
/* global MilestoneSelect */
import
IssuableBulkUpdateActions
from
'
./issuable_bulk_update_actions
'
;
import
'
./milestone_select
'
;
import
MilestoneSelect
from
'
./milestone_select
'
;
import
issueStatusSelect
from
'
./issue_status_select
'
;
import
subscriptionSelect
from
'
./subscription_select
'
;
import
LabelsSelect
from
'
./labels_select
'
;
...
...
app/assets/javascripts/milestone_select.js
View file @
f0d2c424
This diff is collapsed.
Click to expand it.
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