diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c2ce001bc3..c03f369463 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -11,7 +11,7 @@ on: - main pull_request: - types: [opened, synchronize, reopened, ready_for_review] + types: [opened, synchronize, reopened, edited, ready_for_review] branches: - main diff --git a/packages/stores/src/store.rs b/packages/stores/src/store.rs index edef40ef2b..20825ea705 100644 --- a/packages/stores/src/store.rs +++ b/packages/stores/src/store.rs @@ -204,7 +204,7 @@ where impl<__F, __FMut, T: ?Sized, S, Lens> ::std::convert::From> for ReadStore where - Lens: Writable + 'static, + Lens: Readable + 'static, __F: Fn(&Lens::Target) -> &T + 'static, __FMut: Fn(&mut Lens::Target) -> &mut T + 'static, S: BoxedSignalStorage + CreateBoxedSignalStorage>,