Verified Commit 6f225ef6 authored by Grégor JOUET's avatar Grégor JOUET 🔧
Browse files

Update error display on queue

parent b173f492
Loading
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -72,7 +72,7 @@ export default {
        }).then(resp => {
            this.$store.dispatch("load_queues")
        }).catch(err => {
            this.$stire.dispatch("display_error", err)
            this.$store.dispatch("display_error", err)
        })
      },
      dequeue(id) {
@@ -95,7 +95,7 @@ export default {
        .then(resp => {
            this.$store.dispatch("load_queues")
        }).catch(err => {
            this.$stire.dispatch("display_error", err)
            this.$store.dispatch("display_error", err)
        })
      },
      toggle_queue_state(item) {
@@ -104,7 +104,7 @@ export default {
        }).then(resp => {
            this.$store.dispatch("load_queues")
        }).catch(err => {
            this.$stire.dispatch("display_error", err)
            this.$store.dispatch("display_error", err)
        })
      },
      new_queue() {
@@ -115,7 +115,7 @@ export default {
          }).then(resp => {
              this.$store.dispatch("load_queues")
          }).catch(err => {
              this.$stire.dispatch("display_error", err)
              this.$store.dispatch("display_error", err)
          })
      },
      reload() {