Hoon Park created ZEPPELIN-1905:
-----------------------------------
Summary: BUG: "Clear all paragraphs" doens't work in Note
Key: ZEPPELIN-1905
URL: https://issues.apache.org/jira/browse/ZEPPELIN-1905
Project: Zeppelin
Issue Type: Bug
Affects Versions: 0.7.0
Reporter: Hoon Park
{{Clear All Paragraphs}} doesn't work due to invalid frontend imp.
- {{NotebookServer.java}} sends the {{NOTE}} websocket message
- But {{notebook.controller.js}} doens't apply the result properly since it has
invalid impl
{code}
$scope.$on('setNoteContent', function(event, note) {
....
if ($scope.note === null) {
$scope.note = note;
} else {
$scope.note.config.personalizedMode = note.config.personalizedMode;
}
{code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)