From c4bcbfcdca44aded4901609ad2dcaa3aceb9f3c0 Mon Sep 17 00:00:00 2001 From: Brian Ingles Date: Thu, 2 Jan 2025 14:52:45 -0600 Subject: [PATCH] Apply suggestions from code review Co-authored-by: margaretkennedy <82049573+margaretkennedy@users.noreply.github.com> --- plugins/ui/docs/components/list_view.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/ui/docs/components/list_view.md b/plugins/ui/docs/components/list_view.md index c8a43dc2e..5105348e8 100644 --- a/plugins/ui/docs/components/list_view.md +++ b/plugins/ui/docs/components/list_view.md @@ -76,7 +76,7 @@ my_list_view_table_source = ui_list_view_table_source() ## Selection -The `selection_mode` prop can be used to configure how ui.list_view handles item selection. The options are `'MULTIPLE'` (the default value), `'SINGLE'` or `'NONE'`. +The `selection_mode` prop can be used to configure how `ui.list_view` handles item selection. The options are `'MULTIPLE'` (the default value), `'SINGLE'`, or `'NONE'`. Set `selection_mode='SINGLE'` to constrain selection to a single item. @@ -116,7 +116,7 @@ def ui_list_view(): my_list_view = ui_list_view() ``` -`selection_mode` can be explicitly set to `MULTIPLE` for cases where it is dynamically defined. For example, a ui.radio can be used to allow changing the selection mode. +`selection_mode` can be explicitly set to `MULTIPLE` for cases where it is dynamically defined. For example, a `ui.radio` can be used to change the selection mode. ```python @ui.component