Open
Conversation
|
|
|
|
Owner
Author
--- 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" |
Owner
Author
--- 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() |
AlexRage
commented
Apr 1, 2025
Owner
Author
AlexRage
left a comment
There was a problem hiding this comment.
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 |
Owner
Author
There was a problem hiding this comment.
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'])) | ||
| } | ||
|
|
Owner
Author
There was a problem hiding this comment.
Suggested change
| this.ngZone.run(async () => await this.router.navigate(['/address/select'])) | |
| } | |
| this.ngZone.run(async () => "Hello World" | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



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