aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--viewer/src/components/LdError.vue4
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 @@
31import { Component, Prop, Vue } from "vue-property-decorator"; 31import { 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