Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Bokeh filter Keyword in NRS TA Monitors #1620

Merged
merged 6 commits into from
Jul 22, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1304,7 +1304,7 @@ def plt_mags_time(self):
""",
)
self.date_range.js_on_change("value", callback)
mini_view = CDSView(filters=[self.date_filter])
mini_view = CDSView(filter=self.date_filter)

# create the bokeh plot
plot = figure(
Expand Down Expand Up @@ -1408,7 +1408,7 @@ def setup_date_range(self):
return indices;
""",
)
self.date_view = CDSView(filters=[self.date_filter])
self.date_view = CDSView(filter=self.date_filter)

def mk_plt_layout(self):
"""Create the bokeh plot layout"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -797,7 +797,7 @@ def setup_date_range(self):
return indices;
""",
)
self.date_view = CDSView(filters=[filt])
self.date_view = CDSView(filter=filt)

def mk_plt_layout(self):
"""Create the bokeh plot layout"""
Expand Down
Loading