Tim Child

Results 16 issues of Tim Child

If I wrap a component in `Tooltip`, I am not longer able to set the width of the inner component to `100%` and have it fill the outer container. I...

## Feature request It would be great to have some way to directly update values in the frontend from the backend without having to also set a state var and...

documentation
linear
Medium priority

**Describe the bug** Docs on https://reflex.dev/docs/styling/overview/#styling say that >Children components inherit inline styles unless they are overridden by their own inline styles. But, that doesn't seem to be the case...

**Describe the bug** The chakra multi select doesn't seem to do any multi selecting... The problem is visible directly in the docs here https://reflex.dev/docs/library/chakra/forms/select/ **To Reproduce** Same as example in...

wontfix

### Initial Checks - [X] I confirm that I'm using Pydantic V2 ### Description If there is a bad `model_validator` that forgets to return `self` then `SomeModel.model_validate(dict_obj)` returns `None` while...

feature request
help wanted

**Describe the bug** Trying to use an `rx.match` within an f-string causes a `failed to compile` error that shows up in the browser, but no sign of issues during compiling....

bug
linear

**Describe the bug** Trying to mixin an `rx.background` method causes error that "only background tasks should use async with self". Mixing in `rx.cached_var` doesn't do any caching and instead works...

**Describe the bug** Attempting to call the `create` method on a `ComponentState` inside of a `foreach` call results in a `ReferenceError` on the frontend (only if the ComponentState has any...

bug

I'd like to be able to create re-usable components, but providing some initial default values when I create them. For example: ``` def AppFunc(): import reflex as rx class Counter(rx.ComponentState):...

**Describe the bug** Changing the database number in the REDIS_URL (e.g. from `redis://127.0.0.1:6379/0` to `redis://127.0.0.1:6379/1`) introduces up to 20s delays on `rx.background` updates. For example, with a button that is...

bug
need repro example