Skip to content

Commit 04a0e32

Browse files
committed
fix: build issues
Signed-off-by: Asitha de Silva <asithade@gmail.com>
1 parent 25b12ec commit 04a0e32

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/lfx-pcc/src/app/modules/project/meetings/components/meeting-committee-modal/meeting-committee-modal.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export class MeetingCommitteeModalComponent {
5555

5656
// Load committees using toSignal
5757
public committees: Signal<Committee[]> = toSignal(
58-
this.committeeService.getCommitteesByProject(this.projectService.project()?.id || '').pipe(
58+
this.committeeService.getCommitteesByProject(this.projectService.project()?.uid || '').pipe(
5959
tap(() => this.committeesLoading.set(false)),
6060
catchError((error) => {
6161
console.error('Failed to load committees:', error);
@@ -135,7 +135,7 @@ export class MeetingCommitteeModalComponent {
135135

136136
// Build update request with all existing meeting fields plus committees
137137
const updateRequest = {
138-
project_id: this.meeting.project_id.toString(),
138+
project_uid: this.meeting.project_uid,
139139
topic: this.meeting.topic || '',
140140
agenda: this.meeting.agenda || undefined,
141141
start_time: this.meeting.start_time || '',

0 commit comments

Comments
 (0)