Skip to content

Commit

Permalink
bug(data frame): Use <ID>_data_view_rows
Browse files Browse the repository at this point in the history
Followup to #1377
  • Loading branch information
schloerke committed May 15, 2024
1 parent 8983b34 commit d49fb4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shiny/render/_data_frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ def self_input_cell_selection() -> CellSelection | None:
@reactive.calc
def self__input_data_view_rows() -> list[int]:
data_view_rows = self._get_session().input[
f"{self.output_id}_data_view_indices"
f"{self.output_id}_data_view_rows"
]()
return data_view_rows

Expand Down

0 comments on commit d49fb4b

Please sign in to comment.