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

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorDavid O'Regan <doregan@gitlab.com>2021-01-28 20:09:40 +0300
committerSuzanne Selhorn <sselhorn@gitlab.com>2021-01-28 20:09:40 +0300
commitf62e566932f50947ec53515a71421eff24a6dacd (patch)
treeaa648e210ba75ef2bb431f8343a7b325801e9c63 /spec
parenta0af59dc3925909e735a240f1b9f2be16d03fb22 (diff)
Fix(Mobile): Mobile navbar refractor
Update our breadcrumbs and mobile sidebar to use consistent navigation with main project
Diffstat (limited to 'spec')
-rw-r--r--spec/frontend/default/components/navigation_toggle_spec.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/frontend/default/components/navigation_toggle_spec.js b/spec/frontend/default/components/navigation_toggle_spec.js
index 730dbae0..38d8624c 100644
--- a/spec/frontend/default/components/navigation_toggle_spec.js
+++ b/spec/frontend/default/components/navigation_toggle_spec.js
@@ -5,7 +5,7 @@ describe('component: Navigation Toggle', () => {
let wrapper;
beforeEach(() => {
- const propsData = { targetSelector: '.some-selector' };
+ const propsData = { targetSelector: ['.some-selector'] };
wrapper = mount(NavigationToggle, { propsData });
});