@burh/nuxt-core 1.0.363 → 1.0.364

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.
@@ -377,8 +377,10 @@ export default {
377
377
  },
378
378
  methods: {
379
379
  handleNewReportNoteSubmit() {
380
- this.$emit('new-report-note', this.newReportNote, this.userFolderId, this.userData.id);
381
- this.newReportNote = '';
380
+ if (this.newReportNote.length > 5) {
381
+ this.$emit('new-report-note', this.newReportNote, this.userFolderId, this.userData.id);
382
+ this.newReportNote = '';
383
+ }
382
384
  },
383
385
  openRemoveSection(item, index) {
384
386
  this.hasRemove = index;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@burh/nuxt-core",
3
- "version": "1.0.363",
3
+ "version": "1.0.364",
4
4
  "description": "Design System and Components.",
5
5
  "author": "Burh",
6
6
  "scripts": {