Martin Nyolt
Martin Nyolt
@sander1095 One work-around is of course to add `script-src 'unsafe-hashes' 'sha256-MhtPZXr7+LpJUY5qtMutB+qWfQtMaPccfe7QXtCcEYc='` This is not really more insecure, as it only allows the `this.media='all'` script to execute, which is the culprit...
The problem gets even worse because the final config/secret name is not only the name specified in the compose file, but is prefixed with the project/stack name. In my case,...
@evgenyfedorenko But this particular component is not available in ngx-bootstrap, specifically an input combined with a select-dropdown, where the input filters the available options.
I am using the same config with `[email protected]` and it's not working: ``` There is an error in your styles: Can't find stylesheet to import. ? 1 ¦ @import '~@angular/material/theming';...
[This comment](https://github.com/swimlane/ngx-datatable/issues/2087#issuecomment-1251173216) mentions a fork at [siemens/ngx-datatable](https://github.com/siemens/ngx-datatable). This has already a few thousand downloads a week on npm. It’s currently at v21 with support for Angular13, but it seems to...
Your code says `path.extname('url')` instead of `path.extname(url)`. `url` is probably meant to be passed as the variable, not the string.
Same here. This is my code mediaObserver.asObservable().subscribe(changes => { console.log(changes.map(c => c.mqAlias)); }); In Chrome, when I resize fast (from lg to md and back), I get the following outputs...
We are now approaching mid 2020. What is the status and roadmap of this? Being able to use material in components with ShadowDom opens a lot of opportunities and cleaner...
There is `extraCommandArgs` for the Server ([docs](https://docs.openshift.com/container-platform/4.13/cicd/gitops/argo-cd-custom-resource-properties.html#argo-cd-properties_argo-cd-custom-resource-properties)) ```yaml server: extraCommandArgs: - --enable-gzip ```
As discovered by https://github.com/GoogleContainerTools/jib/issues/3962#issuecomment-1479651064, this issue already happens for the current Jib version when you have other dependencies pulling in common-compress 1.22+. For better searchability: I stumbled across this issue...