Ophir LOJKINE
Ophir LOJKINE
@cursoragent old rocky does not have the same packages Run dnf install -y \ dnf install -y \ rpm-build \ rpmdevtools \ rpmlint \ rust \ cargo \ openssl-devel \...
@cursoragent error: Failed build dependencies: cargo >= 1.70 is needed by sqlpage-0.38.0~beta.1-1.el8.x86_64 rust >= 1.70 is needed by sqlpage-0.38.0~beta.1-1.el8.x86_64
Is there some custom css applied in your screenshot ? I see significantly more whitespace below the footer in my browser's mobile device simulator: 
I'm not sure I understand your answer. Is there some custom css applied in your screenshot ? You are saying no, but then paste what looks like your custom css....
Hello ! Did you try to inline a script in a custom component ? The (restrictive) content-security policy currently cannot be disabled. Its goal is to prevent you from accidentally...
@amrutadotorg , do you really need the nonce ? If you just generate a nonce, put it the header, and then immediately forget about it, you could just as well...
@amrutadotorg : You could just remove the nonce from the CSP, since it looks like you are not using it anywhere. Keep the other sources and remove the `nonce-` part....
Oh, so you are serving a `.html` file directly without executing any sql ? You can move the inline script to a separate file: ```html ``` and in `mygame.js`: ```js...
> ```js > const param1 = scriptTag.getAttribute('data-param1'); > const param2 = scriptTag.getAttribute('data-param2'); > ``` You can use the [dataset](https://developer.mozilla.org/en-US/docs/Learn/HTML/Howto/Use_data_attributes) object ```js const {param1, param2} = scriptTag.dataset; ``` > But anyway...
SQLPage v0.26 makes it easier to include scripts. There is no more restriction on loading scripts from a hardcoded `.html` file. From a custom component, you can now load external...