@enso-ui/uploader 2.0.15 → 2.0.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@enso-ui/uploader",
3
- "version": "2.0.15",
3
+ "version": "2.0.17",
4
4
  "description": "File Uploader",
5
5
  "main": "bulma/index.js",
6
6
  "scripts": {
@@ -15,7 +15,7 @@
15
15
  v-on="controlEvents">
16
16
  <span :class="['file-cta', {'is-rounded': isRounded}]"
17
17
  v-if="label">
18
- <span class="file-icon mx-a"
18
+ <span class="file-icon"
19
19
  v-if="!manual || files">
20
20
  <fa icon="upload"/>
21
21
  </span>
@@ -116,7 +116,7 @@ export default {
116
116
 
117
117
  if (status === 422) {
118
118
  Object.keys(data.errors)
119
- .forEach(key => this.toastr.error(data.errors[key][0]));
119
+ .forEach(key => this.toastr.warning(data.errors[key][0]));
120
120
  return;
121
121
  }
122
122