You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by mi...@apache.org on 2016/10/17 03:20:59 UTC

zeppelin git commit: [Zeppelin-1540] fix note url input placeholder

Repository: zeppelin
Updated Branches:
  refs/heads/master 465c51a41 -> 3afd4449c


[Zeppelin-1540] fix note url input placeholder

### What is this PR for?
Fix input form placeholder for `note url`

### What type of PR is it?
Improvement

### Todos
* [x] - Task

### What is the Jira issue?
[ZEPPELIN-1540](https://issues.apache.org/jira/browse/ZEPPELIN-1540)

### How should this be tested?
go to import note menu -> add from url -> see input forms

### Screenshots (if appropriate)
Before:
<img width="593" alt="screen shot 2016-10-13 at 2 37 24 pm" src="https://cloud.githubusercontent.com/assets/1642088/19337731/9ea41248-9152-11e6-859b-757f44b2866a.png">

After:
<img width="601" alt="screen shot 2016-10-13 at 2 36 06 pm" src="https://cloud.githubusercontent.com/assets/1642088/19337716/7f90522c-9152-11e6-8ad2-cbfcdc241e10.png">

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

Author: Khalid Huseynov <kh...@gmail.com>

Closes #1509 from khalidhuseynov/fix/note-import-placeholder and squashes the following commits:

c01b982 [Khalid Huseynov] note name -> note url


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

Branch: refs/heads/master
Commit: 3afd4449ceefe98bd69c3886310b03c3dccc6412
Parents: 465c51a
Author: Khalid Huseynov <kh...@gmail.com>
Authored: Thu Oct 13 14:26:58 2016 +0900
Committer: Mina Lee <mi...@apache.org>
Committed: Mon Oct 17 12:20:51 2016 +0900

----------------------------------------------------------------------
 .../src/components/noteName-import/note-import-dialog.html         | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/3afd4449/zeppelin-web/src/components/noteName-import/note-import-dialog.html
----------------------------------------------------------------------
diff --git a/zeppelin-web/src/components/noteName-import/note-import-dialog.html b/zeppelin-web/src/components/noteName-import/note-import-dialog.html
index 084f108..65c610e 100644
--- a/zeppelin-web/src/components/noteName-import/note-import-dialog.html
+++ b/zeppelin-web/src/components/noteName-import/note-import-dialog.html
@@ -57,7 +57,7 @@ limitations under the License.
           <div class="form-group slide-right" ng-show="note.step2">
 
             <label for="noteImportUrl">URL</label>
-            <input placeholder="Note name" type="text" class="form-control" id="noteImportUrl"
+            <input placeholder="Note url" type="text" class="form-control" id="noteImportUrl"
                    ng-model="note.importUrl" />
           </div>