diff --git a/docs/_includes/themes/zeppelin/_navigation.html b/docs/_includes/themes/zeppelin/_navigation.html
index 72b5e48a037..28700c820f4 100644
--- a/docs/_includes/themes/zeppelin/_navigation.html
+++ b/docs/_includes/themes/zeppelin/_navigation.html
@@ -81,10 +81,10 @@
Notebook as Homepage
- Git Storage
- S3 Storage
- Azure Storage
- ZeppelinHub Storage
+ Git Storage
+ S3 Storage
+ Azure Storage
+ ZeppelinHub Storage
Interpreter API
diff --git a/docs/storage/storage.md b/docs/storage/storage.md
index 36aae501c20..a2a05870831 100644
--- a/docs/storage/storage.md
+++ b/docs/storage/storage.md
@@ -31,7 +31,7 @@ By default, only first two of them will be automatically kept in sync by Zeppeli
-## Notebook Storage in local Git repository
+## Notebook Storage in local Git repository
To enable versioning for all your local notebooks though a standard Git repository - uncomment the next property in `zeppelin-site.xml` in order to use GitNotebookRepo class:
@@ -45,7 +45,7 @@ To enable versioning for all your local notebooks though a standard Git reposito
-## Notebook Storage in S3
+## Notebook Storage in S3
Notebooks may be stored in S3, and optionally encrypted. The [``DefaultAWSCredentialsProviderChain``](https://docs.aws.amazon.com/AWSJavaSDK/latest/javadoc/com/amazonaws/auth/DefaultAWSCredentialsProviderChain.html) credentials provider is used for credentials and checks the following:
@@ -142,7 +142,7 @@ Or using the following setting in **zeppelin-site.xml**:
```
-## Notebook Storage in Azure
+## Notebook Storage in Azure
Using `AzureNotebookRepo` you can connect your Zeppelin with your Azure account for notebook storage.
@@ -205,7 +205,7 @@ Optionally, you can specify Azure folder structure name in the file **zeppelin-s
```
-## Storage in ZeppelinHub
+## Storage in ZeppelinHub
ZeppelinHub storage layer allows out of the box connection of Zeppelin instance with your ZeppelinHub account. First of all, you need to either comment out the following property in **zeppelin-site.xml**:
diff --git a/zeppelin-web/src/app/home/home.controller.js b/zeppelin-web/src/app/home/home.controller.js
index ddd0f805b45..57d5baf1d6b 100644
--- a/zeppelin-web/src/app/home/home.controller.js
+++ b/zeppelin-web/src/app/home/home.controller.js
@@ -65,4 +65,8 @@ angular.module('zeppelinWebApp').controller('HomeCtrl', function($scope, noteboo
node.hidden = !node.hidden;
};
+ $rootScope.noteName = function(note) {
+ return arrayOrderingSrv.getNoteName(note);
+ };
+
});