Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
PaRangger committed Dec 16, 2024
1 parent 971584c commit c8cfff0
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { GroupChatService } from 'app/shared/metis/conversations/group-chat.serv
import { ConversationDTO } from 'app/entities/metis/conversation/conversation.model';
import { Course } from 'app/entities/course.model';
import { generateExampleChannelDTO, generateExampleGroupChatDTO } from '../../helpers/conversationExampleModels';
import { Component, EventEmitter, Input, Output } from '@angular/core';
import { Component, EventEmitter, Input, Output, input } from '@angular/core';
import { AddUsersFormData } from 'app/overview/course-conversations/dialogs/conversation-add-users-dialog/add-users-form/conversation-add-users-form.component';
import { initializeDialog } from '../dialog-test-helpers';
import { ArtemisTranslatePipe } from 'app/shared/pipes/artemis-translate.pipe';
Expand All @@ -29,6 +29,8 @@ class ConversationAddUsersFormStubComponent {
@Input() courseId: number;
@Input() maxSelectable?: number = undefined;

protected readonly isLoading = input<boolean>(false);

@Input()
activeConversation: ConversationDTO;
}
Expand Down

0 comments on commit c8cfff0

Please sign in to comment.