Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2018-05-23 17:29:34 +0300
committerPhil Hughes <me@iamphill.com>2018-05-24 12:38:02 +0300
commit76ffde63189efd81249857a6a9bf612f328322c6 (patch)
treed91da91f755eabb6366e953d3a3b99090c539fe4 /app/assets/javascripts/vue_shared/components/tabs
parent5e79276b53f61cbd727411ed33e71d5b6fa5ca54 (diff)
style improvements
fixed multiple requests causing state to be emptied at wrong time
Diffstat (limited to 'app/assets/javascripts/vue_shared/components/tabs')
-rw-r--r--app/assets/javascripts/vue_shared/components/tabs/tabs.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/app/assets/javascripts/vue_shared/components/tabs/tabs.js b/app/assets/javascripts/vue_shared/components/tabs/tabs.js
index 3dff37b1c84..ac804c0ab3d 100644
--- a/app/assets/javascripts/vue_shared/components/tabs/tabs.js
+++ b/app/assets/javascripts/vue_shared/components/tabs/tabs.js
@@ -32,7 +32,9 @@ export default {
h(
'a',
{
- href: '#',
+ attrs: {
+ href: '#',
+ },
on: {
click: () => this.setTab(i),
},