We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7ea006 commit f9f286bCopy full SHA for f9f286b
src/components/images/ImageUploader.vue
@@ -1,7 +1,6 @@
1
<template>
2
<input type="file" name="fileInput" id="fileInput" @change="uploadFile()" ref="fileInput" :multiple="multiple"><br>
3
<progress ref="progressBar" style="width: 100%" :value="imagesProgress" max="100"></progress>
4
- <div class="error" v-if="purpose === 'avatar'">{{warningMsg}}</div>
5
</template>
6
7
<script>
@@ -116,9 +115,9 @@ export default {
116
115
// TODO(akinsey) return $timeout(function() { Alert.warning(warningMsg); })
117
}
118
})
119
- .catch(function() {
120
- emit('upload-error', v.warningMsg)
121
- })
+ })
+ .catch(() => {
+ emit('upload-error', v.warningMsg)
122
123
124
0 commit comments