Fixed new record value context selector sync in activity drawer (#5594)
Forgot to add `<RecordValueSetterEffect recordId={...} />` effect
component for activity drawer during refactor.
This commit is contained in:
@ -2,6 +2,7 @@ import styled from '@emotion/styled';
|
||||
|
||||
import { ActivityEditor } from '@/activities/components/ActivityEditor';
|
||||
import { ActivityEditorEffect } from '@/activities/components/ActivityEditorEffect';
|
||||
import { RecordValueSetterEffect } from '@/object-record/record-store/components/RecordValueSetterEffect';
|
||||
|
||||
const StyledContainer = styled.div`
|
||||
box-sizing: border-box;
|
||||
@ -26,6 +27,7 @@ export const RightDrawerActivity = ({
|
||||
}: RightDrawerActivityProps) => {
|
||||
return (
|
||||
<StyledContainer>
|
||||
<RecordValueSetterEffect recordId={activityId} />
|
||||
<ActivityEditorEffect activityId={activityId} />
|
||||
<ActivityEditor
|
||||
activityId={activityId}
|
||||
|
||||
Reference in New Issue
Block a user