diff options
Diffstat (limited to 'viewer')
-rw-r--r-- | viewer/src/components/LdError.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/viewer/src/components/LdError.vue b/viewer/src/components/LdError.vue index 5e266ab..4b958dc 100644 --- a/viewer/src/components/LdError.vue +++ b/viewer/src/components/LdError.vue | |||
@@ -31,8 +31,8 @@ | |||
31 | import { Component, Prop, Vue } from "vue-property-decorator"; | 31 | import { Component, Prop, Vue } from "vue-property-decorator"; |
32 | 32 | ||
33 | @Component export default class LdError extends Vue { | 33 | @Component export default class LdError extends Vue { |
34 | @Prop({ required: true }) readonly icon!: string; | 34 | @Prop({ required: true, type: String }) readonly icon!: string; |
35 | @Prop({ required: true }) readonly message!: string; | 35 | @Prop({ required: true, type: String }) readonly message!: string; |
36 | } | 36 | } |
37 | </script> | 37 | </script> |
38 | 38 | ||