Allan Gaunt
Allan Gaunt
Given a power param of: `power: 'binding:kindle and author-exact:' + author + '*',` The code in utils runs: ``` unsignedString = Object.keys(params).map(function (key) { return key + "=" + encodeURIComponent(params[key]).replace(/[!'()*]/g,...
Hi, Using the following code: ``` NativeStorage.getItem('counter', r => { console.log('RES: ' + r) }, e => { console.log('ERROR: ' + e.code) }) ``` I always get `ERROR: Class not...
Update to add clarity to how formatDate handles i18n. The third parameter only needs to be used when using your own custom i18n instance. Quasar will handle it's own internal...
It appears that support for specific DB types isn't supported. I'm merging: ``` datasource db { provider = "mysql" url = env("DATABASE_URL") } generator client { provider = "prisma-client-js" previewFeatures...
## Problem Given the following SQL: ```sql select * from MessgageThread as mt inner join Arc as a on mt.arcId = a.id inner join User as u on mt.recipientUserId =...
Hi, Using Vue2 I have this: > option: { > type: 'multi-day', > week: ['Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa', 'Su'], > month: ['January', 'February', 'March', 'April', 'May', 'June', 'July',...
Using Postman, I'm POSTing to `http://localhost:4000/auth/[email protected]&password=test` which returns a valid password and token ``` { "issued": 1513064134060, "expires": 1513150534060, "provider": "local", "ip": "::1", "token": "therientortackledgedeati", "password": "a76e3a98845b67f533f25070502a12cca1c97163", "user_id": "[email protected]", "roles":...
# RFC (Request for Comments) Template ## Please select your type of RFC (one or more): _Put an `x` in the boxes that apply_ - [x] Change ? - [...
When the X button has been pressed on the select element then the select component itself is no longer visible for whatever reason, the `$refs.btn` is `undefined`. Check for this...
I have the following: ``` Make a payment Make a payment ``` And when I click my button to trigger the modal, I get the modal itself show and the...