Some more tweaks to remove "buefy" references

mostly just docstring / comments but there were some code changes too
This commit is contained in:
Lance Edgar 2024-04-14 20:56:11 -05:00
parent ba521abf4f
commit d4089fbc6e
10 changed files with 42 additions and 45 deletions

View file

@ -1335,7 +1335,7 @@ class Grid(object):
def render_complete(self, template='/grids/complete.mako', **kwargs):
"""
Render the Buefy grid, complete with filters. Note that this also
Render the grid, complete with filters. Note that this also
includes the context menu items and grid tools.
"""
if 'grid_columns' not in kwargs:
@ -1437,7 +1437,7 @@ class Grid(object):
def get_filters_data(self):
"""
Returns a dict of current filters data, for use with Buefy grid view.
Returns a dict of current filters data, for use with index view.
"""
data = {}
for filtr in self.filters.values():
@ -1703,7 +1703,7 @@ class Grid(object):
def set_action_urls(self, row, rowobj, i):
"""
Pre-generate all action URLs for the given data row. Meant for use
with Buefy table, since we can't generate URLs from JS.
with client-side table, since we can't generate URLs from JS.
"""
for action in (self.main_actions + self.more_actions):
url = action.get_url(rowobj, i)