Browse Source

chore: add toast error message

pull/1953/head
Wing-Kam Wong 2 years ago
parent
commit
16e0c0a383
  1. 4
      packages/nc-gui/components/project/spreadsheet/components/editColumn.vue

4
packages/nc-gui/components/project/spreadsheet/components/editColumn.vue

@ -693,6 +693,10 @@ export default {
);
} catch (e) {
console.log(e);
this.$toast
.error("Failed to save column: " + e)
.goAway(3000);
throw e;
}
this.$emit("close");

Loading…
Cancel
Save