Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Development: Use signals in lecture add attachment form #9656

Merged
merged 8 commits into from
Nov 7, 2024

Conversation

florian-glombik
Copy link
Contributor

@florian-glombik florian-glombik commented Nov 2, 2024

Checklist

General

Client

  • I strictly followed the client coding and design guidelines.
  • I added multiple integration tests (Jest) related to the features (with a high test coverage), while following the test guidelines.
  • I documented the TypeScript code using JSDoc style.
  • I added multiple screenshots/screencasts of my UI changes.

Motivation and Context

This PR introduces signals and fixes code smells in components used for editing and updating lectures. This is a preparation for Lectures: Add status bar to lecture creation and edit mode #9655 and aims to keep #9655 at a manageable size of changes.

Description

  • Fixed code smells
  • Introduced signals in attachment-unit-form.component.ts (and thereby removed method calls in the template)
  • Introduced shared constant for allowed file extension variables

Steps for Testing

Prerequisites:

  • 1 Instructor

There is a known issue in Chrome with file uploads, if it fails and something like "Snap, did not work" is displayed, please use a non-chromium browser (e.g. Firefox)

  1. Navigate to the Instructor lecture view (creating and editing)
  2. Click Attachment > Add attachment to upload an attachment, verify the behavior is the same as on develop
  3. Go back to the Instructor lecture view (creating and editing)
  4. Click Units > File to create a File lecture unit, verify the behavior is the same as on develop
  5. Verify editing the Attachment and File lecture unit works the same as on develop
  6. Create a Lecture in the guided mode, where you add a File Lecture Unit
  7. Verify Adding a File lecture unit works
  8. Verify the cancel button works for the file lecture unit

This is a refactoring PR that does not add functionality, so the behavior should not change in comparison to the develop branch.
There is a known issue (guided mode + competency not set => internal server error) that will not be fixed in this PR #9656 (review), see #9656 (comment)

Testserver States

Note

These badges show the state of the test servers.
Green = Currently available, Red = Currently locked
Click on the badges to get to the test servers.







Review Progress

Performance Review

Code Review

  • Code Review 1
  • Code Review 2

Manual Tests

  • Test 1
  • Test 2

Screenshots

signalsAttachmentForm9656

Summary by CodeRabbit

Summary by CodeRabbit

  • New Features

    • Introduced new constants for managing file extensions, enhancing file upload functionality.
  • Improvements

    • Updated file validation logic in the attachment unit form to improve user experience.
    • Enhanced encapsulation of properties in the LectureAttachmentsComponent and AttachmentUnitFormComponent.
  • Refactor

    • Streamlined the structure and dependencies in the LectureAttachmentsComponent and AttachmentUnitFormComponent for better maintainability.
    • Reorganized properties in the CreateExerciseUnitComponent for improved code clarity.
    • Transitioned to a reactive approach in managing form state and validation within the AttachmentUnitFormComponent.
  • Documentation

    • Added human-readable and browser-accepted file extension constants for clearer file upload guidelines.
    • Adjusted test suite for AttachmentUnitFormComponent to align with new property access methods, improving maintainability.

@florian-glombik florian-glombik requested a review from a team as a code owner November 2, 2024 22:21
@florian-glombik florian-glombik self-assigned this Nov 2, 2024
@github-actions github-actions bot added the client Pull requests that update TypeScript code. (Added Automatically!) label Nov 2, 2024
@florian-glombik florian-glombik added code quality lecture Pull requests that affect the corresponding module refactoring labels Nov 2, 2024
@florian-glombik florian-glombik changed the title Development: Use signals in lecture components Development: Use signals in attachment unit form component Nov 2, 2024
@florian-glombik florian-glombik changed the title Development: Use signals in attachment unit form component Development: Use signals for lecture add attachment form Nov 2, 2024
Copy link

coderabbitai bot commented Nov 2, 2024

Walkthrough

The changes in this pull request primarily involve refactoring the LectureAttachmentsComponent and AttachmentUnitFormComponent in an Angular application. Modifications include the removal of unused dependencies, the introduction of new constants for file extensions, and a shift towards a reactive programming model using signals and computed properties. Additionally, updates to the HTML template of the attachment unit form reflect changes in validation logic. Overall, the functionality remains intact while enhancing code organization and encapsulation.

Changes

File Change Summary
src/main/webapp/app/lecture/lecture-attachments.component.ts Removed HttpClient and FileUploaderService; added new constants for file extensions; updated properties to use these constants.
src/main/webapp/app/lecture/lecture-unit/lecture-unit-management/attachment-unit-form/attachment-unit-form.component.html Updated conditional checks from property checks to method calls for file validation; changed button disabled state logic.
src/main/webapp/app/lecture/lecture-unit/lecture-unit-management/attachment-unit-form/attachment-unit-form.component.ts Integrated reactive programming features; updated properties to use new constants; removed OnInit lifecycle hook; modified methods to use signals.
src/main/webapp/app/lecture/lecture-unit/lecture-unit-management/create-exercise-unit/create-exercise-unit.component.ts Reordered and restructured input and output properties without changing functionality.
src/main/webapp/app/shared/constants/file-extensions.constants.ts Added ALLOWED_FILE_EXTENSIONS_HUMAN_READABLE and ACCEPTED_FILE_EXTENSIONS_FILE_BROWSER constants.
src/test/javascript/spec/component/lecture-unit/attachment-unit/attachment-unit-form.component.spec.ts Updated test suite to reflect changes in property access for fileName and isFileTooBig; removed TranslateService provider.

Possibly related PRs

Suggested labels

feature, bugfix

Suggested reviewers

  • JohannesStoehr
  • SimonEntholzer
  • krusche

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai or @coderabbitai title anywhere in the PR title to generate the title automatically.

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🧹 Outside diff range and nitpick comments (8)
src/main/webapp/app/shared/constants/file-extensions.constants.ts (1)

48-50: Add JSDoc documentation for consistency.

The new constants should follow the same documentation pattern as other constants in this file for better maintainability.

Apply this diff to add documentation:

+/**
+ * A human-readable string of allowed file extensions, formatted with commas.
+ * Generated from UPLOAD_FILE_EXTENSIONS for display purposes.
+ */
 export const ALLOWED_FILE_EXTENSIONS_HUMAN_READABLE = UPLOAD_FILE_EXTENSIONS.join(', ');
 
+/**
+ * A string of file extensions prefixed with dots, joined with commas.
+ * Generated from UPLOAD_FILE_EXTENSIONS for use in HTML file input's accept attribute.
+ */
-// The list of file extensions for the "accept" attribute of the file input field
 export const ACCEPTED_FILE_EXTENSIONS_FILE_BROWSER = UPLOAD_FILE_EXTENSIONS.map((ext) => '.' + ext).join(',');
src/main/webapp/app/lecture/lecture-unit/lecture-unit-management/attachment-unit-form/attachment-unit-form.component.html (1)

69-71: Consider converting fileInputTouched to a signal for consistency.

While the change to use fileName() signal is good, consider converting fileInputTouched to a signal as well for a more consistent reactive approach across the component's state management.

-@if (!fileName() && fileInputTouched) {
+@if (!fileName() && fileInputTouched()) {
src/main/webapp/app/lecture/lecture-attachments.component.ts (4)

20-26: Consider moving icon declarations to a shared constants file.

While the protected readonly declarations are good for encapsulation, these icons might be used across multiple components. Moving them to a shared constants file (e.g., icon.constants.ts) would improve reusability and maintain consistency.


Line range hint 64-74: Prevent memory leaks by properly managing subscriptions.

The subscriptions in loadAttachments and other methods aren't being cleaned up, which could lead to memory leaks. Consider using the takeUntil operator with a destroy subject.

Example implementation:

export class LectureAttachmentsComponent implements OnInit, OnDestroy {
  private readonly destroy$ = new Subject<void>();

  loadAttachments(): void {
    this.attachmentService
      .findAllByLectureId(this.lecture.id!)
      .pipe(takeUntil(this.destroy$))
      .subscribe(/*...*/);
  }

  ngOnDestroy(): void {
    this.destroy$.next();
    this.destroy$.complete();
    this.dialogErrorSource.unsubscribe();
  }
}

Line range hint 146-152: Improve error handling to avoid exposing sensitive information.

The error message from HttpErrorResponse is directly exposed to the UI. Consider implementing a proper error handling service that maps error responses to user-friendly messages.

Example implementation:

private handleFailedUpload(error: HttpErrorResponse): void {
  this.errorMessage = this.errorHandlingService.getErrorMessage(error);
  // ... rest of the code
}

Line range hint 191-206: Consider using reactive forms and improve type safety.

  1. The attachment form could benefit from using reactive forms for better validation and state management.
  2. The event handler setLectureAttachment could use a more specific type than Event.

Example implementation:

import { FormBuilder, FormGroup, Validators } from '@angular/forms';

export class LectureAttachmentsComponent {
  attachmentForm: FormGroup;

  constructor(private fb: FormBuilder) {
    this.attachmentForm = this.fb.group({
      name: ['', Validators.required],
      file: [null, Validators.required]
    });
  }

  setLectureAttachment(event: InputEvent): void {
    const input = event.target as HTMLInputElement;
    // ... rest of the code
  }
}
src/main/webapp/app/lecture/lecture-unit/lecture-unit-management/attachment-unit-form/attachment-unit-form.component.ts (2)

85-85: Ensure user receives feedback when file is too large

When the selected file exceeds MAX_FILE_SIZE, isFileTooBig is set to true. Please confirm that appropriate user feedback is provided in the UI to inform the user.

Also applies to: 93-93


114-124: Add validation check before form submission

Currently, submitForm emits formSubmitted without checking if the form is valid. To prevent submission of invalid data, consider adding a validation check.

Apply this diff to add the validation:

+        if (!this.isFormValid()) {
+            return;
+        }
         const formValue = this.form.value;
         const formProperties: FormProperties = { ...formValue };
         const fileProperties: FileProperties = {
             file: this.file,
             fileName: this.fileName(),
         };
         this.formSubmitted.emit({
             formProperties,
             fileProperties,
         });
📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between 4954074 and 3fa86a3.

📒 Files selected for processing (5)
  • src/main/webapp/app/lecture/lecture-attachments.component.ts (2 hunks)
  • src/main/webapp/app/lecture/lecture-unit/lecture-unit-management/attachment-unit-form/attachment-unit-form.component.html (2 hunks)
  • src/main/webapp/app/lecture/lecture-unit/lecture-unit-management/attachment-unit-form/attachment-unit-form.component.ts (4 hunks)
  • src/main/webapp/app/lecture/lecture-unit/lecture-unit-management/create-exercise-unit/create-exercise-unit.component.ts (1 hunks)
  • src/main/webapp/app/shared/constants/file-extensions.constants.ts (1 hunks)
✅ Files skipped from review due to trivial changes (1)
  • src/main/webapp/app/lecture/lecture-unit/lecture-unit-management/create-exercise-unit/create-exercise-unit.component.ts
🧰 Additional context used
📓 Path-based instructions (4)
src/main/webapp/app/lecture/lecture-attachments.component.ts (1)

Pattern src/main/webapp/**/*.ts: angular_style:https://angular.io/guide/styleguide;methods_in_html:false;lazy_loading:true;code_reuse:true;tests:meaningful;types:PascalCase;enums:PascalCase;funcs:camelCase;props:camelCase;no_priv_prefix:true;strings:single_quotes;localize:true;btns:functionality;links:navigation;icons_text:newline;labels:associate;code_style:arrow_funcs,curly_braces,open_braces_same_line,indent_4;memory_leak_prevention:true;routes:naming_schema;chart_framework:ngx-charts;responsive_layout:true

src/main/webapp/app/lecture/lecture-unit/lecture-unit-management/attachment-unit-form/attachment-unit-form.component.html (1)

Pattern src/main/webapp/**/*.html: @if and @for are new and valid Angular syntax replacing *ngIf and *ngFor. They should always be used over the old style.

src/main/webapp/app/lecture/lecture-unit/lecture-unit-management/attachment-unit-form/attachment-unit-form.component.ts (1)

Pattern src/main/webapp/**/*.ts: angular_style:https://angular.io/guide/styleguide;methods_in_html:false;lazy_loading:true;code_reuse:true;tests:meaningful;types:PascalCase;enums:PascalCase;funcs:camelCase;props:camelCase;no_priv_prefix:true;strings:single_quotes;localize:true;btns:functionality;links:navigation;icons_text:newline;labels:associate;code_style:arrow_funcs,curly_braces,open_braces_same_line,indent_4;memory_leak_prevention:true;routes:naming_schema;chart_framework:ngx-charts;responsive_layout:true

src/main/webapp/app/shared/constants/file-extensions.constants.ts (1)

Pattern src/main/webapp/**/*.ts: angular_style:https://angular.io/guide/styleguide;methods_in_html:false;lazy_loading:true;code_reuse:true;tests:meaningful;types:PascalCase;enums:PascalCase;funcs:camelCase;props:camelCase;no_priv_prefix:true;strings:single_quotes;localize:true;btns:functionality;links:navigation;icons_text:newline;labels:associate;code_style:arrow_funcs,curly_braces,open_braces_same_line,indent_4;memory_leak_prevention:true;routes:naming_schema;chart_framework:ngx-charts;responsive_layout:true

🔇 Additional comments (10)
src/main/webapp/app/shared/constants/file-extensions.constants.ts (1)

48-50: LGTM! The implementation is correct and follows best practices.

The constants are:

  • Properly derived from the base UPLOAD_FILE_EXTENSIONS
  • Correctly formatted for their respective use cases
  • Maintain synchronization with server-side definitions
src/main/webapp/app/lecture/lecture-unit/lecture-unit-management/attachment-unit-form/attachment-unit-form.component.html (2)

63-68: LGTM! Proper usage of new Angular syntax.

The change to isFileTooBig() method call and the use of @if directive follows the new Angular guidelines correctly.


Line range hint 108-116: LGTM! Good use of computed validation.

The change to isFormValid() suggests a computed property that likely encapsulates all form validation checks in one place, which is a good practice for maintainability. The use of @if directive is also correct per the new Angular guidelines.

src/main/webapp/app/lecture/lecture-attachments.component.ts (2)

3-3: LGTM: Import changes are well-organized.

The imports are properly organized and the new constants improve code maintainability by centralizing file extension configurations.

Also applies to: 11-11


27-28: LGTM: File extension constants are properly encapsulated.

The use of centralized constants and protected readonly modifiers aligns with Angular best practices.

src/main/webapp/app/lecture/lecture-unit/lecture-unit-management/attachment-unit-form/attachment-unit-form.component.ts (5)

1-8: Imports are correctly updated for new features

The imports have been updated to include signal, computed, inject, and the new constants. This aligns with the use of Angular's reactive programming model and improves code organization.


35-39: Class properties initialized with new constants

The class properties now use the new file extension constants, enhancing maintainability and readability.


55-57: State management enhanced with signals

Introducing signals for fileName and isFileTooBig improves the component's reactivity and state management.


58-66: Form initialization streamlined using dependency injection

Using inject(FormBuilder) and initializing the form inline simplifies the code and follows Angular best practices.


69-71: Review validation logic in isFormValid computed property

The isFormValid computed property uses the condition (this.statusChanges() === 'VALID' || this.fileName()) && !this.isFileTooBig();. The logical OR with this.fileName() might allow form submission when form controls are invalid but a file is selected. Please verify if this behavior is intended.

coderabbitai[bot]
coderabbitai bot previously approved these changes Nov 2, 2024
@github-actions github-actions bot added tests and removed lecture Pull requests that affect the corresponding module labels Nov 2, 2024
Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

🧹 Outside diff range and nitpick comments (1)
src/test/javascript/spec/component/lecture-unit/attachment-unit/attachment-unit-form.component.spec.ts (1)

167-168: Consider adding size-specific assertions.

While the test correctly uses the signal getter isFileTooBig() and follows the coding guidelines for boolean assertions with toBeTrue, consider adding an explicit assertion to verify the exact file size being tested:

expect(fakeFile.size).toBe(MAX_FILE_SIZE + 1);

This would make the test more specific and easier to debug if the file size validation logic changes.

📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between 3fa86a3 and 2f811a5.

📒 Files selected for processing (2)
  • src/main/webapp/app/lecture/lecture-unit/lecture-unit-management/attachment-unit-form/attachment-unit-form.component.ts (4 hunks)
  • src/test/javascript/spec/component/lecture-unit/attachment-unit/attachment-unit-form.component.spec.ts (5 hunks)
🧰 Additional context used
📓 Path-based instructions (2)
src/main/webapp/app/lecture/lecture-unit/lecture-unit-management/attachment-unit-form/attachment-unit-form.component.ts (1)

Pattern src/main/webapp/**/*.ts: angular_style:https://angular.io/guide/styleguide;methods_in_html:false;lazy_loading:true;code_reuse:true;tests:meaningful;types:PascalCase;enums:PascalCase;funcs:camelCase;props:camelCase;no_priv_prefix:true;strings:single_quotes;localize:true;btns:functionality;links:navigation;icons_text:newline;labels:associate;code_style:arrow_funcs,curly_braces,open_braces_same_line,indent_4;memory_leak_prevention:true;routes:naming_schema;chart_framework:ngx-charts;responsive_layout:true

src/test/javascript/spec/component/lecture-unit/attachment-unit/attachment-unit-form.component.spec.ts (1)

Pattern src/test/javascript/spec/**/*.ts: jest: true; mock: NgMocks; bad_practices: avoid_full_module_import; perf_improvements: mock_irrelevant_deps; service_testing: mock_http_for_logic; no_schema: avoid_NO_ERRORS_SCHEMA; expectation_specificity: true; solutions: {boolean: toBeTrue/False, reference: toBe, existence: toBeNull/NotNull, undefined: toBeUndefined, class_obj: toContainEntries/toEqual, spy_calls: {not_called: not.toHaveBeenCalled, once: toHaveBeenCalledOnce, with_value: toHaveBeenCalledWith|toHaveBeenCalledExactlyOnceWith}}

🔇 Additional comments (6)
src/test/javascript/spec/component/lecture-unit/attachment-unit/attachment-unit-form.component.spec.ts (4)

8-8: LGTM! Proper use of ng-mocks utilities.

The import statement correctly uses MockComponent, MockDirective, and MockPipe from ng-mocks, following best practices for Angular component testing.


72-73: LGTM! Proper assertion for signal value.

The test correctly uses the signal getter method fileName() instead of direct property access, following Angular's signals pattern. The assertion follows the coding guidelines using toEqual for object comparison.


91-91: LGTM! Proper signal setter usage in form submission test.

The test correctly uses the signal setter fileName.set() and follows the coding guidelines for spy assertions with toHaveBeenCalledOnce.


133-133: LGTM! Proper signal setter usage in invalid form test.

The test correctly uses the signal setter and follows the coding guidelines for negative spy assertions with not.toHaveBeenCalled.

src/main/webapp/app/lecture/lecture-unit/lecture-unit-management/attachment-unit-form/attachment-unit-form.component.ts (2)

138-138: Approval: Correct use of signals in form value setting

Setting the fileName signal using this.fileName.set(formData?.fileProperties?.fileName); ensures that the reactive property accurately reflects the current state of the file name.


93-93: Verify the correct implementation of file size validation

The isFileTooBig signal is set based on this.file.size > MAX_FILE_SIZE. Ensure that MAX_FILE_SIZE is correctly defined and that users receive appropriate feedback when their file exceeds the allowed size.

Run the following script to confirm the definition and usage of MAX_FILE_SIZE:

✅ Verification successful

File size validation is correctly implemented

The validation is properly implemented with MAX_FILE_SIZE being defined in src/main/webapp/app/shared/constants/input.constants.ts as 20MB (20 * 1024 * 1024 bytes). This constant is:

  • Correctly imported and used in the attachment-unit-form component
  • Consistent with the server-side configuration in application.yml
  • Well-tested as evidenced by test files
  • Used consistently across the application for file upload validations
🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Verify that MAX_FILE_SIZE is properly defined and consistently used.

# Test: Search for the definition of MAX_FILE_SIZE.
# Expectation: MAX_FILE_SIZE should be defined in input.constants.ts or a similar constants file.
rg 'export const MAX_FILE_SIZE' src/ -t typescript

# Test: Search for all usages of MAX_FILE_SIZE to ensure consistent application.
rg 'MAX_FILE_SIZE' src/ -t typescript

Length of output: 160


Script:

#!/bin/bash
# Search for MAX_FILE_SIZE definition and usage without file type restriction
rg 'export const MAX_FILE_SIZE' src/

# Search for all occurrences of MAX_FILE_SIZE
rg 'MAX_FILE_SIZE' src/

# Find potential constant files that might contain MAX_FILE_SIZE
fd 'constant' src/

Length of output: 4950

coderabbitai[bot]
coderabbitai bot previously approved these changes Nov 2, 2024
@florian-glombik florian-glombik temporarily deployed to artemis-test2.artemis.cit.tum.de November 2, 2024 22:59 — with GitHub Actions Inactive
@florian-glombik florian-glombik changed the title Development: Use signals for lecture add attachment form Development: Use signals in lecture add attachment form Nov 2, 2024
@Feras797 Feras797 temporarily deployed to artemis-test5.artemis.cit.tum.de November 3, 2024 12:41 — with GitHub Actions Inactive
Copy link

@HawKhiem HawKhiem left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tested on TS3. Reapprove

Copy link
Member

@BBesrour BBesrour left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tested on TS1, works as expected

Copy link

@sachmii sachmii left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tested on TS1, works fine.

@HanyangXu0508 HanyangXu0508 temporarily deployed to artemis-test2.artemis.cit.tum.de November 6, 2024 18:37 — with GitHub Actions Inactive
@florian-glombik florian-glombik added this to the 7.7.0 milestone Nov 6, 2024
@florian-glombik florian-glombik added the lecture Pull requests that affect the corresponding module label Nov 6, 2024
@krusche krusche merged commit 4d34faa into develop Nov 7, 2024
82 of 90 checks passed
@krusche krusche deleted the chore/lectures/use-signals branch November 7, 2024 23:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
client Pull requests that update TypeScript code. (Added Automatically!) code quality lecture Pull requests that affect the corresponding module ready for review ready to merge refactoring small tests
Projects
Status: Merged
Development

Successfully merging this pull request may close these issues.

10 participants