No More Posting New Topics!

If you have a question or an issue, please start a thread in our Github Discussions Forum.
This forum is closed for new threads/ topics.

Navigation

    Quasar Framework

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search

    Unhandled Promise rejection at start up

    Help
    1
    1
    318
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • Hawkeye64
      Hawkeye64 last edited by

      I have been having an issue for quite some time now but just haven’t had time to follow up on it. At start up of the web app I get the following error:

      Error: null
      quasar.mat.esm.js:1031
          at this$1.showPromiseReject (webpack-internal:///./node_modules/quasar-framework/dist/quasar.mat.esm.js:1187:10)
          at hide (webpack-internal:///./node_modules/quasar-framework/dist/quasar.mat.esm.js:1201:31)
          at (anonymous) (webpack-internal:///./node_modules/quasar-framework/dist/quasar.mat.esm.js:1144:39)
          at (anonymous) (webpack-internal:///./node_modules/vue/dist/vue.runtime.esm.js:1832:11)
          at flushCallbacks (webpack-internal:///./node_modules/vue/dist/vue.runtime.esm.js:1753:13)
      

      which is this code segment inside methods: of var ModelToggleMixin:

            this.showPromise = new Promise(function (resolve, reject) {
              this$1.showPromiseResolve = function () {
                this$1.showPromise = null;
                this$1.$emit('show', evt);
                resolve(evt);
              };
              this$1.showPromiseReject = function () {
                this$1.showPromise = null;
                reject(null); // eslint prefer-promise-reject-errors: 0
              };
            });
      

      I am absolutely clueless as to why this is happening. Has anyone had issue similar to this and resolve it?

      1 Reply Last reply Reply Quote 0
      • First post
        Last post