-
Notifications
You must be signed in to change notification settings - Fork 49
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
Feature/unable to save notes(comments) #363
Feature/unable to save notes(comments) #363
Conversation
function notifyMetadataChanged() { | ||
$rootScope.$emit('metadata:changed'); | ||
} | ||
|
||
function updateComment(vm, param) { | ||
var caseName = vm.model.displayName.split(" ")[0]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is that logic applied anywhere else? If yes, maybe it would be worth to put it into one place and reuse.
This one fixes #87 |
function deleteNote(object) { | ||
var text = object.comment; | ||
delete object.comment; | ||
if (object.comment) { | ||
text = object.comment; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this line required?
@waldemarGr |
Tested (x) |
Please add Changelog entry |
Description
Motivation and Context
Screenshots (if appropriate):
Types of changes
Checklist:
I hereby agree to the terms of the AET Contributor License Agreement.