diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-11-05 10:29:57 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-11-05 10:29:57 +0900 |
| commit | c1bbf5dab666de8f9cf779272cd1c4df610ebb64 (patch) | |
| tree | 5f214a87f0d045aae73c5134f85a065f48e239d1 /src/client/app/common/views/components | |
| parent | Update README.md (#3112) (diff) | |
| download | sharkey-c1bbf5dab666de8f9cf779272cd1c4df610ebb64.tar.gz sharkey-c1bbf5dab666de8f9cf779272cd1c4df610ebb64.tar.bz2 sharkey-c1bbf5dab666de8f9cf779272cd1c4df610ebb64.zip | |
[Client] Fix error
Diffstat (limited to 'src/client/app/common/views/components')
| -rw-r--r-- | src/client/app/common/views/components/ui/button.vue | 6 | ||||
| -rw-r--r-- | src/client/app/common/views/components/ui/input.vue | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/src/client/app/common/views/components/ui/button.vue b/src/client/app/common/views/components/ui/button.vue index 5a898f33d3..71496da5cd 100644 --- a/src/client/app/common/views/components/ui/button.vue +++ b/src/client/app/common/views/components/ui/button.vue @@ -12,7 +12,11 @@ <script lang="ts"> import Vue from 'vue'; export default Vue.extend({ - inject: ['horizonGrouped'], + inject: { + horizonGrouped: { + default: false + } + }, props: { type: { type: String, diff --git a/src/client/app/common/views/components/ui/input.vue b/src/client/app/common/views/components/ui/input.vue index f624b96e41..e63f0074c1 100644 --- a/src/client/app/common/views/components/ui/input.vue +++ b/src/client/app/common/views/components/ui/input.vue @@ -41,7 +41,11 @@ import Vue from 'vue'; const getPasswordStrength = require('syuilo-password-strength'); export default Vue.extend({ - inject: ['horizonGrouped'], + inject: { + horizonGrouped: { + default: false + } + }, props: { value: { required: false |