Skip to content

Commit

Permalink
fix: remove width style on grid container for CSP safe
Browse files Browse the repository at this point in the history
- we shouldn't use inline `style` for CSP safe code, that code was moved in Slickgrid-Universal style instead
  • Loading branch information
ghiscoding committed Mar 5, 2024
1 parent 2dc9e1d commit 03acd4a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ import { SlickRowDetailView } from '../extensions/slickRowDetailView';
<!-- Header slot if you need to create a complex custom header -->
<au-slot name="slickgrid-header"></au-slot>
<div id.bind="gridId" class="slickgrid-container" style="width: 100%" focusout.trigger="commitEdit($event.target)"
<div id.bind="gridId" class="slickgrid-container" focusout.trigger="commitEdit($event.target)"
ref="gridContainer">
</div>
Expand Down

0 comments on commit 03acd4a

Please sign in to comment.