Skip to content

Commit 4ca4c90

Browse files
committed
refactor: small fixes
1 parent 3c0f06f commit 4ca4c90

File tree

12 files changed

+38
-40
lines changed

12 files changed

+38
-40
lines changed

package-lock.json

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"devDependencies": {
4444
"@babel/core": "~7.10.2",
4545
"@vue/cli-plugin-babel": "~4.4.1",
46-
"@vue/cli-plugin-e2e-nightwatch": "~4.4.1",
46+
"@vue/cli-plugin-e2e-nightwatch": "~4.3.1",
4747
"@vue/cli-plugin-eslint": "~4.4.1",
4848
"@vue/cli-plugin-unit-jest": "~4.4.1",
4949
"@vue/cli-service": "~4.4.1",

src/assets/icons/icons.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import {
66
cibTumblr,
77
cibXing,
88
cibGithub,
9-
cibStackOverflow,
9+
cibStackoverflow,
1010
cibYoutube,
1111
cibDribbble,
1212
cibInstagram,
@@ -147,7 +147,7 @@ export const iconsSet = Object.assign(
147147
cibTumblr,
148148
cibXing,
149149
cibGithub,
150-
cibStackOverflow,
150+
cibStackoverflow,
151151
cibYoutube,
152152
cibDribbble,
153153
cibInstagram,

src/containers/TheContainer.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
</transition>
1212
</CContainer>
1313
</main>
14-
<TheFooter/>
1514
</div>
15+
<TheFooter/>
1616
</CWrapper>
1717
</div>
1818
</template>

src/views/base/Forms.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -859,11 +859,11 @@ export default {
859859
selectOptions: [
860860
'Option 1', 'Option 2', 'Option 3',
861861
{
862-
value: ['some value', 'another value'],
862+
value: 'some value',
863863
label: 'Selected option'
864864
}
865865
],
866-
selectedOption: ['some value', 'another value'],
866+
selectedOption: 'some value',
867867
868868
formCollapsed: true,
869869
checkboxNames: ['Checkboxes', 'Inline Checkboxes',

src/views/base/Paginations.vue

-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
<CPagination
2222
:active-page.sync="currentPage"
2323
:pages="10"
24-
responsive
2524
/>
2625
<br>
2726

@@ -38,7 +37,6 @@
3837
size="lg"
3938
:active-page.sync="currentPage"
4039
:pages="10"
41-
responsive
4240
/>
4341
<br>
4442
</div>

src/views/buttons/BrandButtons.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ export default {
183183
'tumblr',
184184
'xing',
185185
'github',
186-
'stack-overflow',
186+
'stackoverflow',
187187
'youtube',
188188
'dribbble',
189189
'instagram',
@@ -202,7 +202,7 @@ export default {
202202
// tumblr: 'Tumblr',
203203
// xing: 'Xing',
204204
// github: 'Github',
205-
// 'stack-overflow': 'StackOverflow',
205+
// stackoverflow: 'StackOverflow',
206206
// youtube: 'YouTube',
207207
// dribbble: 'Dribbble',
208208
// instagram: 'Instagram',

src/views/notifications/Modals.vue

+1
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
5555
<CModal
5656
title="Modal title"
5757
:show.sync="myModal"
58+
size="xl"
5859
>
5960
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
6061
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,

tests/unit/containers/__snapshots__/TheContainer.spec.js.snap

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ exports[`TheContainer.vue renders correctly 1`] = `
2626
/>
2727
</ccontainer-stub>
2828
</main>
29-
30-
<thefooter-stub />
3129
</div>
30+
31+
<thefooter-stub />
3232
</cwrapper-stub>
3333
</div>
3434
`;

tests/unit/views/base/__snapshots__/Paginations.spec.js.snap

-2
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ exports[`Paginations.vue renders correctly 1`] = `
4747
doublearrows="true"
4848
limit="5"
4949
pages="10"
50-
responsive=""
5150
/>
5251
5352
<br />
@@ -84,7 +83,6 @@ exports[`Paginations.vue renders correctly 1`] = `
8483
doublearrows="true"
8584
limit="5"
8685
pages="10"
87-
responsive=""
8886
size="lg"
8987
/>
9088

tests/unit/views/buttons/__snapshots__/BrandButtons.spec.js.snap

+21-21
Original file line numberDiff line numberDiff line change
@@ -188,8 +188,8 @@ exports[`BrandButtons.vue renders correctly 1`] = `
188188
</span>
189189
</button>
190190
<button
191-
class="btn btn-stack-overflow btn-sm"
192-
name="stack-overflow"
191+
class="btn btn-stackoverflow btn-sm"
192+
name="stackoverflow"
193193
type="button"
194194
>
195195
<svg
@@ -202,7 +202,7 @@ exports[`BrandButtons.vue renders correctly 1`] = `
202202
</svg>
203203
204204
<span>
205-
stack-overflow
205+
stackoverflow
206206
</span>
207207
</button>
208208
<button
@@ -501,8 +501,8 @@ exports[`BrandButtons.vue renders correctly 1`] = `
501501
</span>
502502
</button>
503503
<button
504-
class="btn btn-stack-overflow"
505-
name="stack-overflow"
504+
class="btn btn-stackoverflow"
505+
name="stackoverflow"
506506
type="button"
507507
>
508508
<svg
@@ -515,7 +515,7 @@ exports[`BrandButtons.vue renders correctly 1`] = `
515515
</svg>
516516
517517
<span>
518-
stack-overflow
518+
stackoverflow
519519
</span>
520520
</button>
521521
<button
@@ -820,8 +820,8 @@ exports[`BrandButtons.vue renders correctly 1`] = `
820820
</span>
821821
</button>
822822
<button
823-
class="btn btn-stack-overflow btn-lg"
824-
name="stack-overflow"
823+
class="btn btn-stackoverflow btn-lg"
824+
name="stackoverflow"
825825
type="button"
826826
>
827827
<svg
@@ -834,7 +834,7 @@ exports[`BrandButtons.vue renders correctly 1`] = `
834834
</svg>
835835
836836
<span>
837-
stack-overflow
837+
stackoverflow
838838
</span>
839839
</button>
840840
<button
@@ -1145,8 +1145,8 @@ exports[`BrandButtons.vue renders correctly 1`] = `
11451145
</svg>
11461146
</button>
11471147
<button
1148-
class="btn btn-stack-overflow btn-sm"
1149-
name="stack-overflow"
1148+
class="btn btn-stackoverflow btn-sm"
1149+
name="stackoverflow"
11501150
type="button"
11511151
>
11521152
<svg
@@ -1390,8 +1390,8 @@ exports[`BrandButtons.vue renders correctly 1`] = `
13901390
</svg>
13911391
</button>
13921392
<button
1393-
class="btn btn-stack-overflow"
1394-
name="stack-overflow"
1393+
class="btn btn-stackoverflow"
1394+
name="stackoverflow"
13951395
type="button"
13961396
>
13971397
<svg
@@ -1641,8 +1641,8 @@ exports[`BrandButtons.vue renders correctly 1`] = `
16411641
</svg>
16421642
</button>
16431643
<button
1644-
class="btn btn-stack-overflow btn-lg"
1645-
name="stack-overflow"
1644+
class="btn btn-stackoverflow btn-lg"
1645+
name="stackoverflow"
16461646
type="button"
16471647
>
16481648
<svg
@@ -1886,11 +1886,11 @@ exports[`BrandButtons.vue renders correctly 1`] = `
18861886
</span>
18871887
</button>
18881888
<button
1889-
class="btn btn-stack-overflow btn-sm"
1889+
class="btn btn-stackoverflow btn-sm"
18901890
type="button"
18911891
>
18921892
<span>
1893-
stack-overflow
1893+
stackoverflow
18941894
</span>
18951895
</button>
18961896
<button
@@ -2029,11 +2029,11 @@ exports[`BrandButtons.vue renders correctly 1`] = `
20292029
</span>
20302030
</button>
20312031
<button
2032-
class="btn btn-stack-overflow"
2032+
class="btn btn-stackoverflow"
20332033
type="button"
20342034
>
20352035
<span>
2036-
stack-overflow
2036+
stackoverflow
20372037
</span>
20382038
</button>
20392039
<button
@@ -2178,11 +2178,11 @@ exports[`BrandButtons.vue renders correctly 1`] = `
21782178
</span>
21792179
</button>
21802180
<button
2181-
class="btn btn-stack-overflow btn-lg"
2181+
class="btn btn-stackoverflow btn-lg"
21822182
type="button"
21832183
>
21842184
<span>
2185-
stack-overflow
2185+
stackoverflow
21862186
</span>
21872187
</button>
21882188
<button

tests/unit/views/notifications/__snapshots__/Modals.spec.js.snap

+1
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,7 @@ exports[`Modals.vue renders correctly 1`] = `
185185
backdrop="true"
186186
closeonbackdrop="true"
187187
fade="true"
188+
size="xl"
188189
title="Modal title"
189190
>
190191

0 commit comments

Comments
 (0)