We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d180f3 commit f850fccCopy full SHA for f850fcc
plugins/uploader-resources/src/components/FileUploadStatusPopup.svelte
@@ -118,7 +118,9 @@
118
<div class="flex-row-center flex-gap-2 text-sm">
119
{#if file.error}
120
<Label label={uploader.status.Error} />
121
- <span class="label overflow-label" use:tooltip={{ label: getEmbeddedLabel(file.error) }}>{file.error}</span>
+ <span class="label overflow-label" use:tooltip={{ label: getEmbeddedLabel(file.error) }}
122
+ >{file.error}</span
123
+ >
124
{:else if file.progress > 0}
125
{#if file.finished}
126
<Label label={uploader.status.Completed} />
0 commit comments