File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -214,9 +214,14 @@ const handlePreviewContent = () => {
214
214
<Flex direction =" column" gap =" 8" :class =" $style.badge" >
215
215
<Text size =" 12" weight =" 500" color =" secondary" > Content Type </Text >
216
216
217
- <Text size =" 13" weight =" 600" color =" primary" >
217
+ <Text v-if = " cacheStore.selectedBlob.content_type " size =" 13" weight =" 600" color =" primary" >
218
218
{{ cacheStore.selectedBlob.content_type }}
219
219
</Text >
220
+ <Text v-else-if =" blob.content_type" size =" 13" weight =" 600" color =" primary" >
221
+ {{ blob.content_type }}
222
+ </Text >
223
+ <Skeleton v-else-if =" isLoading && !isStopped" w =" 60" h =" 13" />
224
+ <Text v-else size =" 13" weight =" 600" color =" tertiary" >Unknown</Text >
220
225
</Flex >
221
226
222
227
<NuxtLink :to =" `/tx/${cacheStore.selectedBlob.tx.hash}`" target =" _blank" :class =" [$style.badge, $style.selectable]" >
You can’t perform that action at this time.
0 commit comments