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
0
Merge Requests
0
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
Léo-Paul Géneau
gitlab-ce
Commits
8826962d
Commit
8826962d
authored
Nov 19, 2018
by
George Tsiolis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update `gitlab` npm namespace
parent
f2521567
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
6 deletions
+7
-6
app/assets/javascripts/cycle_analytics/components/limit_warning_component.vue
...ts/cycle_analytics/components/limit_warning_component.vue
+2
-2
app/assets/javascripts/diffs/components/diff_file_header.vue
app/assets/javascripts/diffs/components/diff_file_header.vue
+2
-2
app/assets/javascripts/vue_shared/components/time_ago_tooltip.vue
...ts/javascripts/vue_shared/components/time_ago_tooltip.vue
+3
-2
No files found.
app/assets/javascripts/cycle_analytics/components/limit_warning_component.vue
View file @
8826962d
<
script
>
import
{
GlTooltipDirective
}
from
'
@gitlab
-org/gitlab-
ui
'
;
import
{
GlTooltipDirective
}
from
'
@gitlab
/
ui
'
;
export
default
{
directives
:
{
...
...
@@ -16,7 +16,7 @@ export default {
<
template
>
<span
v-if=
"count === 50"
class=
"events-info float-right"
>
<i
v-gl-tooltip
.
top
v-gl-tooltip
:title=
"
n__('Limited to showing %d event at most', 'Limited to showing %d events at most', 50)
"
...
...
app/assets/javascripts/diffs/components/diff_file_header.vue
View file @
8826962d
...
...
@@ -4,7 +4,7 @@ import { mapActions, mapGetters } from 'vuex';
import
ClipboardButton
from
'
~/vue_shared/components/clipboard_button.vue
'
;
import
Icon
from
'
~/vue_shared/components/icon.vue
'
;
import
FileIcon
from
'
~/vue_shared/components/file_icon.vue
'
;
import
{
GlTooltipDirective
}
from
'
@gitlab
-org/gitlab-
ui
'
;
import
{
GlTooltipDirective
}
from
'
@gitlab
/
ui
'
;
import
{
truncateSha
}
from
'
~/lib/utils/text_utility
'
;
import
{
__
,
s__
,
sprintf
}
from
'
~/locale
'
;
import
EditButton
from
'
./edit_button.vue
'
;
...
...
@@ -231,7 +231,7 @@ export default {
<a
v-if=
"diffFile.external_url"
v-gl-tooltip
v-gl-tooltip
.
hover
:href=
"diffFile.external_url"
:title=
"`View on ${diffFile.formatted_external_url}`"
target=
"_blank"
...
...
app/assets/javascripts/vue_shared/components/time_ago_tooltip.vue
View file @
8826962d
<
script
>
import
{
GlTooltipDirective
}
from
'
@gitlab
-org/gitlab-
ui
'
;
import
{
GlTooltipDirective
}
from
'
@gitlab
/
ui
'
;
import
timeagoMixin
from
'
../mixins/timeago
'
;
import
'
../../lib/utils/datetime_utility
'
;
...
...
@@ -35,6 +35,7 @@ export default {
v-gl-tooltip=
"
{ placement: tooltipPlacement }"
:class="cssClass"
:title="tooltipTitle(time)"
v-text="timeFormated(time)">
v-text="timeFormated(time)"
>
</time>
</
template
>
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