File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
zeppelin-server/src/main/java/org/apache/zeppelin/socket
zeppelin-web/src/app/notebook Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -546,7 +546,7 @@ public void broadcastNoteList(AuthenticationInfo subject) {
546546 if (subject .getUser () == user ) {
547547 continue ;
548548 }
549- notesInfo = generateNotebooksInfo (false , new AuthenticationInfo (user ));
549+ notesInfo = generateNotesInfo (false , new AuthenticationInfo (user ));
550550 multicastToUser (user , new Message (OP .NOTES_INFO ).put ("notes" , notesInfo ));
551551 }
552552 }
@@ -569,7 +569,7 @@ public void broadcastReloadedNoteList(AuthenticationInfo subject) {
569569 continue ;
570570 }
571571 //reloaded already above; parameter - false
572- notesInfo = generateNotebooksInfo (false , new AuthenticationInfo (user ));
572+ notesInfo = generateNotesInfo (false , new AuthenticationInfo (user ));
573573 multicastToUser (user , new Message (OP .NOTES_INFO ).put ("notes" , notesInfo ));
574574 }
575575 }
Original file line number Diff line number Diff line change 5353 < button type ="button "
5454 class ="btn btn-default btn-xs "
5555 ng-hide ="viewOnly "
56- tooltip-placement ="bottom " tooltip ="Clone the note " data-source-note-name ="{{note.name}} "
56+ tooltip-placement ="bottom " tooltip ="Clone this note " data-source-note-name ="{{note.name}} "
5757 data-toggle ="modal " data-target ="#noteNameModal " data-clone ="true "
5858 >
5959 < i class ="fa fa-copy "> </ i >
6262 class ="btn btn-default btn-xs "
6363 ng-hide ="viewOnly "
6464 ng-click ="exportNote() "
65- tooltip-placement ="bottom " tooltip ="Export the note ">
65+ tooltip-placement ="bottom " tooltip ="Export this note ">
6666 < i class ="fa fa-download "> </ i >
6767 </ button >
6868 </ span >
9393 ng-hide ="viewOnly "
9494 ng-click ="checkpointNotebook(note.checkpoint.message) "
9595 style ="margin-left: 4px; "
96- tooltip-placement ="bottom " tooltip ="Commit the note "> Commit
96+ tooltip-placement ="bottom " tooltip ="Commit this note "> Commit
9797 </ button >
9898 </ div >
9999 </ div >
130130 class ="btn btn-default btn-xs "
131131 ng-click ="removeNote(note.id) "
132132 ng-hide ="viewOnly "
133- tooltip-placement ="bottom " tooltip ="Remove the note ">
133+ tooltip-placement ="bottom " tooltip ="Remove this note ">
134134 < i class ="icon-trash "> </ i >
135135 </ button >
136136 </ span >
You can’t perform that action at this time.
0 commit comments