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

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 0 additions & 2 deletions
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 1 addition & 0 deletions
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 0 additions & 2 deletions
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

0 commit comments

Comments
 (0)