-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(ag-grid): pin test version and hide border bottom
- Loading branch information
1 parent
9205dc9
commit 7dd1edc
Showing
4 changed files
with
9 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -169,4 +169,8 @@ | |
} | ||
} | ||
} | ||
|
||
.ag-sticky-bottom { | ||
display: none; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,8 @@ | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>AG Grid example</title> | ||
<!-- External resources --> | ||
<script src="https://cdn.jsdelivr.net/npm/ag-grid-community/dist/ag-grid-community.min.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/ag-grid-community.min.js"></script> | ||
|
||
<!-- External resources --> | ||
</head> | ||
<body> | ||
|
@@ -70,7 +71,7 @@ | |
checkboxSelection: true, | ||
}; | ||
|
||
new agGrid.Grid(container, gridOptions); | ||
agGrid.createGrid(container, gridOptions); | ||
})(); | ||
</script> | ||
<script type="module" src="./init.js"></script> | ||
|