npbenjohnson

Results 13 comments of npbenjohnson

We haven't migrated our projects to .Net 5 yet but I'll verify after we do in the next couple of months

This is still an issue, bulkmerge and bulkinsert both try to write the computed column: https://dotnetfiddle.net/IOaSxC

Any word on this? It's a recurring issue for our team because we have nullable tenancy FK fields that are sometimes used for compound primary-keys via a non-nullable computed column

I hacked something that makes it slightly more compatible with bundlers, but it's not polished enough to PR. Right now the wasm-pack output prefix is hardcoded to "index", changing it...

I believe buffer size is the second argument in fromDefaultMicrophone, does it work if you set it to the required size?

I don't understand the syntax of the response interceptor you posted, is it just es6? ``` return { data: response.data[Object.keys(response.data)[0]] }; ``` should work, if you figure out how this...

#91 may relate to this. I believe restangular lets you fix data standardization issues by using element transformers, and interceptors don't do quite the same job. Is there a reason...

accessibility is busted AF on https://github.com/classlinkinc/angular-material-time-picker which makes me think it's just styled the same

I'm not sure this change makes sense in line with what REST and swagger are actually communicating. From swagger: "The default value is the one that the server uses if...

Workaround tested in ts 5.1 but should work in some older versions: import type { VDataTable } from "vuetify/labs/VDataTable"; // For array props type VDataTableHeader = Exclude; // For non-array...