Skip to content

Commit

Permalink
style: Fix lint problems
Browse files Browse the repository at this point in the history
  • Loading branch information
Clashsoft committed Oct 27, 2023
1 parent 4e25572 commit 8898670
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Component } from '@angular/core';
import {Component, OnInit} from '@angular/core';
import Solution, {Feedback} from "../../../model/solution";
import {ActivatedRoute} from "@angular/router";
import {SolutionService} from "../../../services/solution.service";
Expand All @@ -10,7 +10,7 @@ import {ToastService} from "@mean-stream/ngbx";
templateUrl: './feedback.component.html',
styleUrls: ['./feedback.component.scss']
})
export class FeedbackComponent {
export class FeedbackComponent implements OnInit {
protected readonly Feedback = Feedback;

feedback: Feedback = {};
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {Component, Input, OnInit} from '@angular/core';
import {Component, Input, OnDestroy, OnInit} from '@angular/core';
import {CreateEvaluationDto, Snippet} from "../../../model/evaluation";
import {merge, Observable, Subject, Subscription} from "rxjs";
import {SearchSummary} from "../../../model/search-result";
Expand All @@ -18,7 +18,7 @@ export const selectionComment = '(fulibFeedback Selection)';
templateUrl: './snippet-list.component.html',
styleUrls: ['./snippet-list.component.scss']
})
export class SnippetListComponent implements OnInit {
export class SnippetListComponent implements OnInit, OnDestroy {
@Input({required: true}) task?: Task;
@Input({required: true}) dto: CreateEvaluationDto;

Expand Down
2 changes: 1 addition & 1 deletion services/apps/assignments/src/course/course.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {EventService} from '@mean-stream/nestx';
import {Injectable} from '@nestjs/common';
import {InjectModel} from '@nestjs/mongoose';
import {FilterQuery, Model} from 'mongoose';
import {AuthorInfo, Solution} from '../solution/solution.schema';
import {AuthorInfo} from '../solution/solution.schema';
import {SolutionService} from '../solution/solution.service';
import {idFilter} from '../utils';
import {CourseStudent, CreateCourseDto, UpdateCourseDto} from './course.dto';
Expand Down
1 change: 0 additions & 1 deletion services/libs/member/src/member.schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import {Ref} from '@mean-stream/nestx';
import {Prop, Schema, SchemaFactory} from '@nestjs/mongoose';
import {ApiProperty} from '@nestjs/swagger';
import {Document, Types} from 'mongoose';
import {Project} from '../../../apps/projects/src/project/project.schema';

@Schema({_id: false, id: false})
export class Member {
Expand Down

0 comments on commit 8898670

Please sign in to comment.