Skip to content

Commit 4b4e1e8

Browse files
committed
Fix detail (function's name) & Change some placeholder
1 parent 429203d commit 4b4e1e8

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

zeppelin-server/src/main/java/org/apache/zeppelin/socket/NotebookServer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
}

zeppelin-web/src/app/notebook/notebook-actionBar.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ <h3>
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>
@@ -62,7 +62,7 @@ <h3>
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>
@@ -93,7 +93,7 @@ <h3>
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>
@@ -130,7 +130,7 @@ <h3>
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>

0 commit comments

Comments
 (0)