Browse Source

Replace url with fileUrl

pull/1779/head
Hironsan 2 years ago
parent
commit
4b93bf0c66
2 changed files with 3 additions and 3 deletions
  1. 4
      frontend/pages/projects/_id/image-classification/index.vue
  2. 2
      frontend/pages/projects/_id/speech-to-text/index.vue

4
frontend/pages/projects/_id/image-classification/index.vue

@ -55,7 +55,7 @@
<v-divider />
<v-img
contain
:src="image.url"
:src="image.fileUrl"
:max-height="imageSize.height"
class="grey lighten-2"
/>
@ -224,7 +224,7 @@ export default {
self.imageSize.height = this.height
self.imageSize.width = this.width
}
img.src = val.url
img.src = val.fileUrl
}
}
}

2
frontend/pages/projects/_id/speech-to-text/index.vue

@ -24,7 +24,7 @@
/>
</v-overlay>
<audio-viewer
:source="item.url"
:source="item.fileUrl"
class="mb-5"
/>
<seq2seq-box

Loading…
Cancel
Save