Repository: zeppelin Updated Branches: refs/heads/master ca4e587f1 -> 9ca485589
[HOTFIX] Master branch build fail after merge ca4e587f11a90169b7ae95fe53ce909b5226cf1a ### What is this PR for? Fixes master branch build fail with error ``` [INFO] --- frontend-maven-plugin:0.0.25:grunt (grunt build) zeppelin-web --- [INFO] Running 'grunt build --no-color' in /Users/moon/Projects/zeppelin/zeppelin-web [INFO] Running "jshint:all" (jshint) task [INFO] [INFO] â No problems [INFO] [INFO] [INFO] Running "htmlhint:src" (htmlhint) task [INFO] src/index.html [INFO] L57 | <link rel="stylesheet" href="app/jobmanager/jobmanager.css"> [INFO] ^ The empty tag : [ link ] must be self closed. (tag-self-close) [INFO] L58 | <link rel="stylesheet" href="app/jobmanager/jobs/job.css"> [INFO] ^ The empty tag : [ link ] must be self closed. (tag-self-close) [INFO] [INFO] >> 2 errors in 1 files [INFO] Warning: Task "htmlhint:src" failed. Use --force to continue. [INFO] [INFO] Aborted due to warnings. ``` ### What type of PR is it? Hot Fix ### Todos * [x] - close tag ### What is the Jira issue? ZEPPELIN-964, ZEPPELIN-1088 ### Questions: * Does the licenses files need update? no * Is there breaking changes for older versions? no * Does this needs documentation? no Author: Lee moon soo <[email protected]> Closes #1149 from Leemoonsoo/hotfix_964 and squashes the following commits: 96f8231 [Lee moon soo] close tag Project: http://git-wip-us.apache.org/repos/asf/zeppelin/repo Commit: http://git-wip-us.apache.org/repos/asf/zeppelin/commit/9ca48558 Tree: http://git-wip-us.apache.org/repos/asf/zeppelin/tree/9ca48558 Diff: http://git-wip-us.apache.org/repos/asf/zeppelin/diff/9ca48558 Branch: refs/heads/master Commit: 9ca485589e915202bb6890f0529d71daee6c21d6 Parents: ca4e587 Author: Lee moon soo <[email protected]> Authored: Thu Jul 7 13:08:19 2016 -0700 Committer: Lee moon soo <[email protected]> Committed: Thu Jul 7 14:24:25 2016 -0700 ---------------------------------------------------------------------- zeppelin-web/src/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/zeppelin/blob/9ca48558/zeppelin-web/src/index.html ---------------------------------------------------------------------- diff --git a/zeppelin-web/src/index.html b/zeppelin-web/src/index.html index 444195c..6caff1c 100644 --- a/zeppelin-web/src/index.html +++ b/zeppelin-web/src/index.html @@ -54,8 +54,8 @@ limitations under the License. <link rel="stylesheet" href="app/search/search.css" /> <link rel="stylesheet" href="app/notebook/notebook.css" /> <link rel="stylesheet" href="app/notebook/paragraph/paragraph.css" /> - <link rel="stylesheet" href="app/jobmanager/jobmanager.css"> - <link rel="stylesheet" href="app/jobmanager/jobs/job.css"> + <link rel="stylesheet" href="app/jobmanager/jobmanager.css" /> + <link rel="stylesheet" href="app/jobmanager/jobs/job.css" /> <link rel="stylesheet" href="app/interpreter/interpreter.css" /> <link rel="stylesheet" href="app/credential/credential.css" /> <link rel="stylesheet" href="app/configuration/configuration.css" />
