Skip to content

Commit

Permalink
reference to rowCount should be done via dataSetInfo.rowCount (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
boutinb authored Nov 24, 2023
1 parent eb009e1 commit 121f4ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions inst/qml/Prophet.qml
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ Form
{
name: "maxChangepoints"
label: qsTr("Max. changepoints")
defaultValue: Math.min(25, dataSetModel.rowCount())
max: dataSetModel.rowCount()
defaultValue: Math.min(25, dataSetInfo.rowCount)
max: dataSetInfo.rowCount
}
DoubleField
{
Expand Down

0 comments on commit 121f4ec

Please sign in to comment.