flameresttable 1.0.108 → 1.0.109

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": "flameresttable",
3
- "version": "1.0.108",
3
+ "version": "1.0.109",
4
4
  "main": "./src/plugin.ts",
5
5
  "repository": {
6
6
  "type": "git",
@@ -355,6 +355,9 @@ export default defineComponent({
355
355
  }
356
356
 
357
357
  const fileUpdated = async (column: any, ev: any) => {
358
+ // если файлы не выбраны
359
+ if (ev.target.files.length === 0) return;
360
+
358
361
  Table.columns[column].Popup.model = ev;
359
362
  const prepared = (await REST.prepare({ myParam: ev })).myParam;
360
363
  Table.columns[column].Popup.model = prepared