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
ac27d830
Commit
ac27d830
authored
Dec 03, 2021
by
Coung Ngo
Committed by
Andrew Fontaine
Dec 03, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move ~/issuable_create and ~/issuable_sidebar
parent
086f0237
Changes
14
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
13 additions
and
13 deletions
+13
-13
app/assets/javascripts/issuable_show/components/issuable_show_root.vue
...vascripts/issuable_show/components/issuable_show_root.vue
+1
-1
app/assets/javascripts/vue_shared/issuable/create/components/issuable_create_root.vue
...hared/issuable/create/components/issuable_create_root.vue
+0
-0
app/assets/javascripts/vue_shared/issuable/create/components/issuable_form.vue
...s/vue_shared/issuable/create/components/issuable_form.vue
+0
-0
app/assets/javascripts/vue_shared/issuable/sidebar/components/issuable_sidebar_root.vue
...red/issuable/sidebar/components/issuable_sidebar_root.vue
+0
-0
app/assets/javascripts/vue_shared/issuable/sidebar/constants.js
...sets/javascripts/vue_shared/issuable/sidebar/constants.js
+0
-0
ee/app/assets/javascripts/test_case_create/components/test_case_create_root.vue
...pts/test_case_create/components/test_case_create_root.vue
+1
-1
ee/spec/frontend/integrations/jira/issues_show/components/jira_issues_show_root_spec.js
...jira/issues_show/components/jira_issues_show_root_spec.js
+1
-1
ee/spec/frontend/integrations/zentao/issues_show/components/zentao_issues_show_root_spec.js
...ao/issues_show/components/zentao_issues_show_root_spec.js
+1
-1
ee/spec/frontend/test_case_create/components/test_case_create_root_spec.js
...test_case_create/components/test_case_create_root_spec.js
+2
-2
ee/spec/frontend/test_case_show/components/test_case_show_root_spec.js
...end/test_case_show/components/test_case_show_root_spec.js
+1
-1
spec/frontend/issuable_show/components/issuable_show_root_spec.js
...ntend/issuable_show/components/issuable_show_root_spec.js
+1
-1
spec/frontend/vue_shared/issuable/create/components/issuable_create_root_spec.js
...d/issuable/create/components/issuable_create_root_spec.js
+2
-2
spec/frontend/vue_shared/issuable/create/components/issuable_form_spec.js
...e_shared/issuable/create/components/issuable_form_spec.js
+1
-1
spec/frontend/vue_shared/issuable/sidebar/components/issuable_sidebar_root_spec.js
...issuable/sidebar/components/issuable_sidebar_root_spec.js
+2
-2
No files found.
app/assets/javascripts/issuable_show/components/issuable_show_root.vue
View file @
ac27d830
<
script
>
import
IssuableSidebar
from
'
~/
issuable_
sidebar/components/issuable_sidebar_root.vue
'
;
import
IssuableSidebar
from
'
~/
vue_shared/issuable/
sidebar/components/issuable_sidebar_root.vue
'
;
import
IssuableBody
from
'
./issuable_body.vue
'
;
import
IssuableDiscussion
from
'
./issuable_discussion.vue
'
;
...
...
app/assets/javascripts/
issuable_
create/components/issuable_create_root.vue
→
app/assets/javascripts/
vue_shared/issuable/
create/components/issuable_create_root.vue
View file @
ac27d830
File moved
app/assets/javascripts/
issuable_
create/components/issuable_form.vue
→
app/assets/javascripts/
vue_shared/issuable/
create/components/issuable_form.vue
View file @
ac27d830
File moved
app/assets/javascripts/
issuable_
sidebar/components/issuable_sidebar_root.vue
→
app/assets/javascripts/
vue_shared/issuable/
sidebar/components/issuable_sidebar_root.vue
View file @
ac27d830
File moved
app/assets/javascripts/
issuable_
sidebar/constants.js
→
app/assets/javascripts/
vue_shared/issuable/
sidebar/constants.js
View file @
ac27d830
File moved
ee/app/assets/javascripts/test_case_create/components/test_case_create_root.vue
View file @
ac27d830
<
script
>
import
{
GlButton
}
from
'
@gitlab/ui
'
;
import
createFlash
from
'
~/flash
'
;
import
IssuableCreate
from
'
~/
issuable_
create/components/issuable_create_root.vue
'
;
import
IssuableCreate
from
'
~/
vue_shared/issuable/
create/components/issuable_create_root.vue
'
;
import
{
redirectTo
}
from
'
~/lib/utils/url_utility
'
;
import
{
s__
}
from
'
~/locale
'
;
...
...
ee/spec/frontend/integrations/jira/issues_show/components/jira_issues_show_root_spec.js
View file @
ac27d830
...
...
@@ -8,7 +8,7 @@ import { IssuableStatus } from '~/issue_show/constants';
import
waitForPromises
from
'
helpers/wait_for_promises
'
;
import
IssuableHeader
from
'
~/issuable_show/components/issuable_header.vue
'
;
import
IssuableShow
from
'
~/issuable_show/components/issuable_show_root.vue
'
;
import
IssuableSidebar
from
'
~/
issuable_
sidebar/components/issuable_sidebar_root.vue
'
;
import
IssuableSidebar
from
'
~/
vue_shared/issuable/
sidebar/components/issuable_sidebar_root.vue
'
;
import
axios
from
'
~/lib/utils/axios_utils
'
;
import
{
mockJiraIssue
}
from
'
../mock_data
'
;
...
...
ee/spec/frontend/integrations/zentao/issues_show/components/zentao_issues_show_root_spec.js
View file @
ac27d830
...
...
@@ -10,7 +10,7 @@ import IssuableHeader from '~/issuable_show/components/issuable_header.vue';
import
IssuableShow
from
'
~/issuable_show/components/issuable_show_root.vue
'
;
import
IssuableDiscussion
from
'
~/issuable_show/components/issuable_discussion.vue
'
;
import
Note
from
'
ee/external_issues_show/components/note.vue
'
;
import
IssuableSidebar
from
'
~/
issuable_
sidebar/components/issuable_sidebar_root.vue
'
;
import
IssuableSidebar
from
'
~/
vue_shared/issuable/
sidebar/components/issuable_sidebar_root.vue
'
;
import
axios
from
'
~/lib/utils/axios_utils
'
;
import
httpStatusCodes
from
'
~/lib/utils/http_status
'
;
...
...
ee/spec/frontend/test_case_create/components/test_case_create_root_spec.js
View file @
ac27d830
...
...
@@ -4,8 +4,8 @@ import TestCaseCreateRoot from 'ee/test_case_create/components/test_case_create_
import
createTestCase
from
'
ee/test_case_create/queries/create_test_case.mutation.graphql
'
;
import
createFlash
from
'
~/flash
'
;
import
IssuableCreate
from
'
~/
issuable_
create/components/issuable_create_root.vue
'
;
import
IssuableForm
from
'
~/
issuable_
create/components/issuable_form.vue
'
;
import
IssuableCreate
from
'
~/
vue_shared/issuable/
create/components/issuable_create_root.vue
'
;
import
IssuableForm
from
'
~/
vue_shared/issuable/
create/components/issuable_form.vue
'
;
import
{
redirectTo
}
from
'
~/lib/utils/url_utility
'
;
jest
.
mock
(
'
~/flash
'
);
...
...
ee/spec/frontend/test_case_show/components/test_case_show_root_spec.js
View file @
ac27d830
...
...
@@ -10,7 +10,7 @@ import IssuableEditForm from '~/issuable_show/components/issuable_edit_form.vue'
import
IssuableHeader
from
'
~/issuable_show/components/issuable_header.vue
'
;
import
IssuableShow
from
'
~/issuable_show/components/issuable_show_root.vue
'
;
import
IssuableEventHub
from
'
~/issuable_show/event_hub
'
;
import
IssuableSidebar
from
'
~/
issuable_
sidebar/components/issuable_sidebar_root.vue
'
;
import
IssuableSidebar
from
'
~/
vue_shared/issuable/
sidebar/components/issuable_sidebar_root.vue
'
;
import
{
mockProvide
,
mockTestCase
}
from
'
../mock_data
'
;
...
...
spec/frontend/issuable_show/components/issuable_show_root_spec.js
View file @
ac27d830
...
...
@@ -4,7 +4,7 @@ import IssuableBody from '~/issuable_show/components/issuable_body.vue';
import
IssuableHeader
from
'
~/issuable_show/components/issuable_header.vue
'
;
import
IssuableShowRoot
from
'
~/issuable_show/components/issuable_show_root.vue
'
;
import
IssuableSidebar
from
'
~/
issuable_
sidebar/components/issuable_sidebar_root.vue
'
;
import
IssuableSidebar
from
'
~/
vue_shared/issuable/
sidebar/components/issuable_sidebar_root.vue
'
;
import
{
mockIssuableShowProps
,
mockIssuable
}
from
'
../mock_data
'
;
...
...
spec/frontend/
issuable_
create/components/issuable_create_root_spec.js
→
spec/frontend/
vue_shared/issuable/
create/components/issuable_create_root_spec.js
View file @
ac27d830
import
{
mount
}
from
'
@vue/test-utils
'
;
import
IssuableCreateRoot
from
'
~/
issuable_
create/components/issuable_create_root.vue
'
;
import
IssuableForm
from
'
~/
issuable_
create/components/issuable_form.vue
'
;
import
IssuableCreateRoot
from
'
~/
vue_shared/issuable/
create/components/issuable_create_root.vue
'
;
import
IssuableForm
from
'
~/
vue_shared/issuable/
create/components/issuable_form.vue
'
;
const
createComponent
=
({
descriptionPreviewPath
=
'
/gitlab-org/gitlab-shell/preview_markdown
'
,
...
...
spec/frontend/
issuable_
create/components/issuable_form_spec.js
→
spec/frontend/
vue_shared/issuable/
create/components/issuable_form_spec.js
View file @
ac27d830
import
{
GlFormInput
}
from
'
@gitlab/ui
'
;
import
{
shallowMount
}
from
'
@vue/test-utils
'
;
import
IssuableForm
from
'
~/
issuable_
create/components/issuable_form.vue
'
;
import
IssuableForm
from
'
~/
vue_shared/issuable/
create/components/issuable_form.vue
'
;
import
MarkdownField
from
'
~/vue_shared/components/markdown/field.vue
'
;
import
LabelsSelect
from
'
~/vue_shared/components/sidebar/labels_select_vue/labels_select_root.vue
'
;
...
...
spec/frontend/
issuable_
sidebar/components/issuable_sidebar_root_spec.js
→
spec/frontend/
vue_shared/issuable/
sidebar/components/issuable_sidebar_root_spec.js
View file @
ac27d830
...
...
@@ -2,8 +2,8 @@ import { GlBreakpointInstance as bp } from '@gitlab/ui/dist/utils';
import
Cookies
from
'
js-cookie
'
;
import
{
shallowMountExtended
}
from
'
helpers/vue_test_utils_helper
'
;
import
IssuableSidebarRoot
from
'
~/
issuable_
sidebar/components/issuable_sidebar_root.vue
'
;
import
{
USER_COLLAPSED_GUTTER_COOKIE
}
from
'
~/
issuable_
sidebar/constants
'
;
import
IssuableSidebarRoot
from
'
~/
vue_shared/issuable/
sidebar/components/issuable_sidebar_root.vue
'
;
import
{
USER_COLLAPSED_GUTTER_COOKIE
}
from
'
~/
vue_shared/issuable/
sidebar/constants
'
;
const
MOCK_LAYOUT_PAGE_CLASS
=
'
layout-page
'
;
...
...
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