Skip to content

Commit

Permalink
use documented rowCount vs availableRowCount
Browse files Browse the repository at this point in the history
  • Loading branch information
brmorr committed Aug 22, 2019
1 parent 6dbb5f2 commit 3f666d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/registerDataDrivenContent.html
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@

// Receive data and create an html table in the 'data-driven-content' div
function handleDataMessage(message) {
if (message && message.availableRowCount >= 0) {
if (message && message.rowCount >= 0) {
// Find the index of the brush column
const brushColumnIndex = message.columns.findIndex((column) => column.usage === 'brush');

Expand Down

0 comments on commit 3f666d0

Please sign in to comment.