From 3cf40298471995fddea8a66860353a2b1ceeeeee Mon Sep 17 00:00:00 2001 From: pacien Date: Fri, 8 May 2020 19:04:29 +0200 Subject: viewer/LdError: fix prop constructor type --- viewer/src/components/LdError.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'viewer/src') 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 @@ import { Component, Prop, Vue } from "vue-property-decorator"; @Component export default class LdError extends Vue { - @Prop({ required: true }) readonly icon!: string; - @Prop({ required: true }) readonly message!: string; + @Prop({ required: true, type: String }) readonly icon!: string; + @Prop({ required: true, type: String }) readonly message!: string; } -- cgit v1.2.3