summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-11-05 10:29:57 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-11-05 10:29:57 +0900
commitc1bbf5dab666de8f9cf779272cd1c4df610ebb64 (patch)
tree5f214a87f0d045aae73c5134f85a065f48e239d1
parentUpdate README.md (#3112) (diff)
downloadsharkey-c1bbf5dab666de8f9cf779272cd1c4df610ebb64.tar.gz
sharkey-c1bbf5dab666de8f9cf779272cd1c4df610ebb64.tar.bz2
sharkey-c1bbf5dab666de8f9cf779272cd1c4df610ebb64.zip
[Client] Fix error
-rw-r--r--src/client/app/common/views/components/ui/button.vue6
-rw-r--r--src/client/app/common/views/components/ui/input.vue6
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