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
f7e39f9a
Commit
f7e39f9a
authored
Apr 20, 2021
by
Tan Le
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove redundant Vuex includes in approvals module
parent
bd902553
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
6 deletions
+0
-6
ee/app/assets/javascripts/approvals/mount_mr_edit.js
ee/app/assets/javascripts/approvals/mount_mr_edit.js
+0
-3
ee/app/assets/javascripts/approvals/mount_project_settings.js
...pp/assets/javascripts/approvals/mount_project_settings.js
+0
-3
No files found.
ee/app/assets/javascripts/approvals/mount_mr_edit.js
View file @
f7e39f9a
import
Vue
from
'
vue
'
;
import
Vuex
from
'
vuex
'
;
import
{
parseBoolean
}
from
'
~/lib/utils/common_utils
'
;
import
MrEditApp
from
'
./components/mr_edit/app.vue
'
;
import
createStore
from
'
./stores
'
;
import
mrEditModule
from
'
./stores/modules/mr_edit
'
;
Vue
.
use
(
Vuex
);
export
default
function
mountApprovalInput
(
el
)
{
if
(
!
el
)
{
return
null
;
...
...
ee/app/assets/javascripts/approvals/mount_project_settings.js
View file @
f7e39f9a
import
Vue
from
'
vue
'
;
import
Vuex
from
'
vuex
'
;
import
{
parseBoolean
}
from
'
~/lib/utils/common_utils
'
;
import
ProjectSettingsApp
from
'
./components/project_settings/app.vue
'
;
import
createStore
from
'
./stores
'
;
import
projectSettingsModule
from
'
./stores/modules/project_settings
'
;
Vue
.
use
(
Vuex
);
export
default
function
mountProjectSettingsApprovals
(
el
)
{
if
(
!
el
)
{
return
null
;
...
...
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