Skip to content

Conversation

@AlexRage
Copy link
Owner

Description

A clear and concise summary of the change and which issue (if any) it fixes. Should also include relevant motivation and context.

Resolved or fixed issue:

Affirmation

@ghost
Copy link

ghost commented Nov 19, 2024

@ghost
Copy link

ghost commented Nov 29, 2024

@sonarclouddev6
Copy link

@sonarclouddev7
Copy link

@AlexRage
Copy link
Owner Author

AlexRage commented Apr 1, 2025

--- a/path/to/file1.txt
+++ b/path/to/file1.txt
@@ -1,3 +1,4 @@
 Line 1
 Line 2
 Line 3
+Added line in file1.txt

--- a/path/to/file2.py
+++ b/path/to/file2.py
@@ -10,12 +10,12 @@
 # Some code in file2.py
 def example_function():
-    old_variable = 10
-    return old_variable * 2
+    new_variable = 20
+    return new_variable * 2

+def another_function():
+    return "New function in file2.py"

@AlexRage
Copy link
Owner Author

AlexRage commented Apr 1, 2025

--- a/frontend/src/index.html
+++ b/frontend/src/index.html
@@ -5,7 +5,8 @@
     print("Hello, world!")

 def add_numbers(a, b):
-    return a + b
+    result = a + b
+    return result

 if __name__ == "__main__":
     greet()

Copy link
Owner Author

@AlexRage AlexRage left a comment

Choose a reason for hiding this comment

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

For this issue please review the following proposed changes

Comment on lines 64 to 68
this.productSubscription = this.productService.search('').subscribe((tableData: any) => {
console.log(tableData)
this.tableData = tableData
this.dataSource = new MatTableDataSource<Element>(this.tableData)
this.dataSource.paginator = this.paginator
Copy link
Owner Author

Choose a reason for hiding this comment

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

Suggested change
this.productSubscription = this.productService.search('').subscribe((tableData: any) => {
console.log(tableData)
this.tableData = tableData
this.dataSource = new MatTableDataSource<Element>(this.tableData)
this.dataSource.paginator = this.paginator
this.productSubscription = "Hello World!"

Comment on lines 25 to 27
this.ngZone.run(async () => await this.router.navigate(['/address/select']))
}

Copy link
Owner Author

Choose a reason for hiding this comment

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

Suggested change
this.ngZone.run(async () => await this.router.navigate(['/address/select']))
}
this.ngZone.run(async () => "Hello World"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants