Max Makhrov
Max Makhrov
The sample code: ``` function example01() { var alasql = AlaSQLGS.load(); alasql.options.joinstar = 'underscore'; var data1 = SpreadsheetApp.openById( '14I34TM84uBnVILA3KQh9Y2LZr_Tr_fMsDQI2kYfht-E' ) .getSheets()[0] .getDataRange() .getValues(); var data2 = SpreadsheetApp.openById( '10uS4_YD4z2Ea-UnxkdydxB6QAKJ9GQUQX4Ozvw0F13o' ) .getSheets()[0]...
> Should we replace `as` before anything? `as` is an optional keyword.
getDisplayValues https://developers.google.com/apps-script/reference/spreadsheet/range#getdisplayvalues
Playing with it is quite a pain The closest solution for `global.scss` file: ```scss .mdc-notched-outline__leading, .mdc-notched-outline__notch, .mdc-notched-outline__trailing { box-sizing: unset; } ``` This also not always gives the correct result.
[Transactions](https://firebase.google.com/docs/firestore/manage-data/transactions) are useful for atomic operations. In my case I need to update user creadits for the add-on. I've implemented this feature for my project. As this library's language is...
> I got the same error, but it seems like I manage to fix it by simply moving `@use "@material/typography/index";` to be the last `@use`-statement. > > This gives the...
Having the same issue: ``` Uncaught TypeError: Cannot read properties of null (reading 'addEventListener') at Object.registerEventHandler (@smui_tooltip.js?v=7894914c:2034:21) at MDCTooltipFoundation2.show (@smui_tooltip.js?v=7894914c:510:22) at @smui_tooltip.js?v=7894914c:385:17 ``` If click the button before the tooltip...