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
3512898e
Commit
3512898e
authored
Jun 03, 2019
by
GitLab Bot
Browse files
Options
Browse Files
Download
Plain Diff
Automatic merge of gitlab-org/gitlab-ce master
parents
589e7f3b
44f53d46
Changes
7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
120 additions
and
110 deletions
+120
-110
app/assets/javascripts/gfm_auto_complete.js
app/assets/javascripts/gfm_auto_complete.js
+1
-0
app/assets/javascripts/monitoring/components/dashboard.vue
app/assets/javascripts/monitoring/components/dashboard.vue
+1
-1
app/assets/javascripts/notes/components/noteable_note.vue
app/assets/javascripts/notes/components/noteable_note.vue
+6
-3
app/assets/javascripts/notes/components/notes_app.vue
app/assets/javascripts/notes/components/notes_app.vue
+4
-0
changelogs/unreleased/62092-missing-padding-next-to-time-windows-dropdown-on-metrics-dashboard.yml
...ng-next-to-time-windows-dropdown-on-metrics-dashboard.yml
+5
-0
spec/frontend/helpers/jquery.js
spec/frontend/helpers/jquery.js
+6
-0
spec/frontend/notes/components/note_app_spec.js
spec/frontend/notes/components/note_app_spec.js
+97
-106
No files found.
app/assets/javascripts/gfm_auto_complete.js
View file @
3512898e
import
$
from
'
jquery
'
;
import
'
at.js
'
;
import
_
from
'
underscore
'
;
import
glRegexp
from
'
./lib/utils/regexp
'
;
...
...
app/assets/javascripts/monitoring/components/dashboard.vue
View file @
3512898e
...
...
@@ -248,7 +248,7 @@ export default {
>
</gl-dropdown>
</div>
<div
v-if=
"showTimeWindowDropdown"
class=
"d-flex align-items-center"
>
<div
v-if=
"showTimeWindowDropdown"
class=
"d-flex align-items-center
prepend-left-8
"
>
<strong>
{{
s__
(
'
Metrics|Show last
'
)
}}
</strong>
<gl-dropdown
class=
"prepend-left-10 js-time-window-dropdown"
...
...
app/assets/javascripts/notes/components/noteable_note.vue
View file @
3512898e
...
...
@@ -10,7 +10,7 @@ import Flash from '../../flash';
import
userAvatarLink
from
'
../../vue_shared/components/user_avatar/user_avatar_link.vue
'
;
import
noteHeader
from
'
./note_header.vue
'
;
import
noteActions
from
'
./note_actions.vue
'
;
import
n
oteBody
from
'
./note_body.vue
'
;
import
N
oteBody
from
'
./note_body.vue
'
;
import
eventHub
from
'
../event_hub
'
;
import
noteable
from
'
../mixins/noteable
'
;
import
resolvable
from
'
../mixins/resolvable
'
;
...
...
@@ -21,7 +21,7 @@ export default {
userAvatarLink
,
noteHeader
,
noteActions
,
n
oteBody
,
N
oteBody
,
TimelineEntryItem
,
},
mixins
:
[
noteable
,
resolvable
,
draftMixin
],
...
...
@@ -209,7 +209,10 @@ export default {
// we need to do this to prevent noteForm inconsistent content warning
// this is something we intentionally do so we need to recover the content
this
.
note
.
note
=
noteText
;
this
.
$refs
.
noteBody
.
note
.
note
=
noteText
;
const
{
noteBody
}
=
this
.
$refs
;
if
(
noteBody
)
{
noteBody
.
note
.
note
=
noteText
;
}
},
},
};
...
...
app/assets/javascripts/notes/components/notes_app.vue
View file @
3512898e
...
...
@@ -127,6 +127,9 @@ export default {
initUserPopovers
(
this
.
$el
.
querySelectorAll
(
'
.js-user-link
'
));
});
},
beforeDestroy
()
{
this
.
stopPolling
();
},
methods
:
{
...
mapActions
([
'
setLoadingState
'
,
...
...
@@ -144,6 +147,7 @@ export default {
'
expandDiscussion
'
,
'
startTaskList
'
,
'
convertToDiscussion
'
,
'
stopPolling
'
,
]),
fetchNotes
()
{
if
(
this
.
isFetching
)
return
null
;
...
...
changelogs/unreleased/62092-missing-padding-next-to-time-windows-dropdown-on-metrics-dashboard.yml
0 → 100644
View file @
3512898e
---
title
:
Added padding to time window dropdown in monitor dashboard
merge_request
:
28897
author
:
type
:
fixed
spec/frontend/helpers/jquery.js
0 → 100644
View file @
3512898e
import
$
from
'
jquery
'
;
global
.
$
=
$
;
global
.
jQuery
=
$
;
export
default
$
;
spec/
javascripts
/notes/components/note_app_spec.js
→
spec/
frontend
/notes/components/note_app_spec.js
View file @
3512898e
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