Tracy Hall
Tracy Hall
@lbogdan Having received no answer, I did not make a particular point of holding the sandbox. A month ago, I might have been able to find a way (the repository...
Runs successfully in emulation; have yet to deploy properly. Mis-read logs ealier.
Deploy successful. Issue was unrelated (exact format of firebase-admin initializeApp - I use a centralized wrapper module for all firebase operations). Pull request valid.
So: I ended up converting to JS, since this was the only TS portion of my codebase. BUT I also both simplified it, and detected if the actual filename was...
your column "CCCCC" is not declared as type: "number" - so it defaults to a lexical sort. Tested using your codesandbox.
Community repository Specifically reactdatagrid/community-edition/packages/NumericInput/src /NumberInput.tsx Lines 298-302 let min = props.mim; if (min === undefined && !props.allowNegative) { min = 0; } NOTE: first line defines min as props.mim -...
Beyond the ```.get()```, ```.getBytes()``` or whatever - have you found ANY scenario where the Storage Security rules are relevant? I've set CORS policies - they only apply, it seems, to...
With much experimentation, here is what I've learned so far for images stored in Firebase Storage (private information obscured): => With a token on the URL, security is bypassed altogether....
More interesting data points: In my code I "dynamically" generate a filename: ``` export const setDefaultImage = () => { (async () => { const imageURL = await getDefaultImageURL( `${COMPANY_NAME.toLowerCase()}_image`...
So continuing successful vs unsuccessful fetches, both in authentication context: SUCCESSFUL (SDK call FirebaseStorage.ref("/defaultImages").child(filename).getDownloadURL() ) [note authorization header] ``` GENERAL: Request URL: https://firebasestorage.googleapis.com/v0/b/tickets-unlimited-fast.appspot.com/o/defaultImages%2Fgigstartr_image.jpg Request Method: GET Status Code: 200 Remote...