Repository: zeppelin
Updated Branches:
  refs/heads/master 45d20abd4 -> 625bd4214


[ZEPPELIN-1744] replace to movement for paragraph in job menu

### What is this PR for?
We should move to editable paragraph move in job menu
currently, moved to readonly mode

### What type of PR is it?
Bug Fix

### Todos
- [x] - fix location address

### What is the Jira issue?
https://issues.apache.org/jira/browse/ZEPPELIN-1744

### How should this be tested?
click to your paragraph item in job menu.

### Screenshots (if appropriate)
#### Before
![movebefore](https://cloud.githubusercontent.com/assets/10525473/20824409/0477b966-b8a0-11e6-8354-aa8c7e6b6498.gif)

#### After
![movefix](https://cloud.githubusercontent.com/assets/10525473/20824363/a312d642-b89f-11e6-85a6-0349544f1fed.gif)

### Questions:
* Does the licenses files need update? no
* Is there breaking changes for older versions? no
* Does this needs documentation? no

Author: CloverHearts <cloverhearts...@gmail.com>

Closes #1717 from cloverhearts/jobm/fixlink and squashes the following commits:

1c8d54c [CloverHearts] Merge branch 'master' into jobm/fixlink
7ae843b [CloverHearts] replace to movement for paragraph in job menu


Project: http://git-wip-us.apache.org/repos/asf/zeppelin/repo
Commit: http://git-wip-us.apache.org/repos/asf/zeppelin/commit/625bd421
Tree: http://git-wip-us.apache.org/repos/asf/zeppelin/tree/625bd421
Diff: http://git-wip-us.apache.org/repos/asf/zeppelin/diff/625bd421

Branch: refs/heads/master
Commit: 625bd4214ac42f5f829d955108d2474a63e67b19
Parents: 45d20ab
Author: CloverHearts <cloverhearts...@gmail.com>
Authored: Mon Dec 5 16:24:51 2016 +0900
Committer: ahyoungryu <ahyoung...@apache.org>
Committed: Fri Dec 16 11:19:53 2016 +0900

----------------------------------------------------------------------
 zeppelin-web/src/app/jobmanager/jobs/job.html | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/625bd421/zeppelin-web/src/app/jobmanager/jobs/job.html
----------------------------------------------------------------------
diff --git a/zeppelin-web/src/app/jobmanager/jobs/job.html 
b/zeppelin-web/src/app/jobmanager/jobs/job.html
index a89b67f..4edf5ea 100644
--- a/zeppelin-web/src/app/jobmanager/jobs/job.html
+++ b/zeppelin-web/src/app/jobmanager/jobs/job.html
@@ -48,7 +48,7 @@ limitations under the License.
       ng-switch="paragraphJob.status">
       <a ng-switch-when="READY"
          style="text-decoration: none !important;"
-         
ng-href="#/notebook/{{notebookJob.noteId}}/paragraph/{{paragraphJob.id}}">
+         
ng-href="#/notebook/{{notebookJob.noteId}}?paragraph={{paragraphJob.id}}">
         <i style="color: green" class="fa fa-circle-o"
            tooltip-placement="top-left"
            tooltip="{{paragraphJob.name}} is READY">
@@ -56,7 +56,7 @@ limitations under the License.
       </a>
       <a ng-switch-when="FINISHED"
          style="text-decoration: none !important;"
-         
ng-href="#/notebook/{{notebookJob.noteId}}/paragraph/{{paragraphJob.id}}">
+         
ng-href="#/notebook/{{notebookJob.noteId}}?paragraph={{paragraphJob.id}}">
         <i style="color: green" class="fa fa-circle"
            tooltip-placement="top-left"
            tooltip="{{paragraphJob.name}} is FINISHED">
@@ -64,7 +64,7 @@ limitations under the License.
       </a>
       <a ng-switch-when="ABORT"
          style="text-decoration: none !important;"
-         
ng-href="#/notebook/{{notebookJob.noteId}}/paragraph/{{paragraphJob.id}}">
+         
ng-href="#/notebook/{{notebookJob.noteId}}?paragraph={{paragraphJob.id}}">
         <i style="color: orange" class="fa fa-circle"
            tooltip-placement="top-left"
            tooltip="{{paragraphJob.name}} is ABORT">
@@ -72,7 +72,7 @@ limitations under the License.
       </a>
       <a ng-switch-when="ERROR"
          style="text-decoration: none !important;"
-         
ng-href="#/notebook/{{notebookJob.noteId}}/paragraph/{{paragraphJob.id}}">
+         
ng-href="#/notebook/{{notebookJob.noteId}}?paragraph={{paragraphJob.id}}">
         <i style="color: red" class="fa fa-circle"
            tooltip-placement="top-left"
            tooltip="{{paragraphJob.name}} is ERROR">
@@ -80,7 +80,7 @@ limitations under the License.
       </a>
       <a ng-switch-when="PENDING"
          style="text-decoration: none !important;"
-         
ng-href="#/notebook/{{notebookJob.noteId}}/paragraph/{{paragraphJob.id}}">
+         
ng-href="#/notebook/{{notebookJob.noteId}}?paragraph={{paragraphJob.id}}">
         <i style="color: gray" class="fa fa-circle"
            tooltip-placement="top-left"
            tooltip="{{paragraphJob.name}} is PENDING">
@@ -88,7 +88,7 @@ limitations under the License.
       </a>
       <a ng-switch-when="RUNNING"
          style="text-decoration: none !important;"
-         
ng-href="#/notebook/{{notebookJob.noteId}}/paragraph/{{paragraphJob.id}}">
+         
ng-href="#/notebook/{{notebookJob.noteId}}?paragraph={{paragraphJob.id}}">
         <i style="color: blue" class="fa fa-spinner spinAnimation"
            tooltip-placement="top-left"
            tooltip="{{paragraphJob.name}} is RUNNING">
@@ -96,7 +96,7 @@ limitations under the License.
       </a>
       <a ng-switch-default class="icon-question"
          style="text-decoration: none !important;"
-         
ng-href="#/notebook/{{notebookJob.noteId}}/paragraph/{{paragraphJob.id}}">
+         
ng-href="#/notebook/{{notebookJob.noteId}}?paragraph={{paragraphJob.id}}">
         <i class="icon-question"
            tooltip-placement="top-left"
            tooltip="{{paragraphJob.name}} is {{paragraphJob.status}}">

Reply via email to