Skip to content

Commit f9f286b

Browse files
committed
refactor: wip get error message displaying
1 parent d7ea006 commit f9f286b

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/components/images/ImageUploader.vue

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<template>
22
<input type="file" name="fileInput" id="fileInput" @change="uploadFile()" ref="fileInput" :multiple="multiple"><br>
33
<progress ref="progressBar" style="width: 100%" :value="imagesProgress" max="100"></progress>
4-
<div class="error" v-if="purpose === 'avatar'">{{warningMsg}}</div>
54
</template>
65

76
<script>
@@ -116,9 +115,9 @@ export default {
116115
// TODO(akinsey) return $timeout(function() { Alert.warning(warningMsg); })
117116
}
118117
})
119-
.catch(function() {
120-
emit('upload-error', v.warningMsg)
121-
})
118+
})
119+
.catch(() => {
120+
emit('upload-error', v.warningMsg)
122121
})
123122
}
124123
}

0 commit comments

Comments
 (0)