From 7d635915faf8f39c07928d96a8692749e5258fb3 Mon Sep 17 00:00:00 2001 From: Dave Pearson Date: Wed, 24 May 2023 10:31:34 +0100 Subject: [PATCH] Fix Select reactives table layout The escaped | wasn't being rendered correctly as it was inside back-ticks. --- docs/widgets/select.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/widgets/select.md b/docs/widgets/select.md index 31a36989c..2ef0cf8f6 100644 --- a/docs/widgets/select.md +++ b/docs/widgets/select.md @@ -66,10 +66,10 @@ The following example presents a `Select` with a number of options. ## Reactive attributes -| Name | Type | Default | Description | -| ---------- | -------------------- | ------- | ----------------------------------- | -| `expanded` | `bool` | `False` | True to expand the options overlay. | -| `value` | `SelectType \| None` | `None` | Current value of the Select. | +| Name | Type | Default | Description | +|------------|------------------------|---------|-------------------------------------| +| `expanded` | `bool` | `False` | True to expand the options overlay. | +| `value` | `SelectType` \| `None` | `None` | Current value of the Select. | ## Bindings