mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
Fix tooltip
This commit is contained in:
parent
d27221df31
commit
ed4685cf3f
2 changed files with 3 additions and 2 deletions
|
|
@ -14,7 +14,8 @@ limitations under the License.
|
|||
|
||||
<div id="{{paragraph.id}}_control" class="control" ng-show="!asIframe">
|
||||
<span ng-show="paragraph.runtimeInfos.jobUrl.values.length == 1">
|
||||
<a href="{{paragraph.runtimeInfos.jobUrl.values[0]}}" target="_blank" style="text-decoration: none;">
|
||||
<a href="{{paragraph.runtimeInfos.jobUrl.values[0]}}" target="_blank" style="text-decoration: none;"
|
||||
tooltip-placement="top" tooltip="{{paragraph.runtimeInfos.jobUrl.tooltip}}" >
|
||||
<span class="fa fa-tasks"></span>
|
||||
{{paragraph.runtimeInfos.jobUrl.label}}
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -420,7 +420,7 @@ public class InterpreterSetting {
|
|||
}
|
||||
|
||||
public Map<String, Set<String>> getNoteIdAndParaMap() {
|
||||
return noteIdToParaIdsetMap;
|
||||
return runtimeInfosToBeCleared;
|
||||
}
|
||||
|
||||
public void clearNoteIdAndParaMap() {
|
||||
|
|
|
|||
Loading…
Reference in a new issue