Skip to content

Commit

Permalink
Change props types def format
Browse files Browse the repository at this point in the history
Signed-off-by: Oleg Ivaniv <[email protected]>
  • Loading branch information
OlegIvaniv committed Jun 18, 2024
1 parent 10dc8d8 commit a9ece44
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions packages/editor-ui/src/components/BinaryDataDisplayEmbed.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,12 @@ import { ref, onMounted, computed } from 'vue';
import { useWorkflowsStore } from '@/stores/workflows.store';
import type { IBinaryData } from 'n8n-workflow';
import { jsonParse } from 'n8n-workflow';
import type { PropType } from 'vue';
import VueJsonPretty from 'vue-json-pretty';
import RunDataHtml from '@/components/RunDataHtml.vue';
const props = defineProps({
binaryData: {
type: Object as PropType<IBinaryData>,
required: true,
},
});
const props = defineProps<{
binaryData: IBinaryData;
}>();
const isLoading = ref(true);
const embedSource = ref('');
Expand Down

0 comments on commit a9ece44

Please sign in to comment.