diff --git a/.eslintrc.json b/.eslintrc.json
index b798d9c..2299ee5 100644
--- a/.eslintrc.json
+++ b/.eslintrc.json
@@ -55,7 +55,6 @@
"indent": ["error", 4],
"keyword-spacing": ["error", {"before": true}],
"line-comment-position": ["error", {"position": "above"}],
- "linebreak-style": ["error", "unix"],
"lines-between-class-members": ["error", "always"],
"max-len": [
"warn",
diff --git a/src/api/StorageListAPI.js b/src/api/StorageListAPI.js
index bdd209c..5226f36 100644
--- a/src/api/StorageListAPI.js
+++ b/src/api/StorageListAPI.js
@@ -1,6 +1,6 @@
import {v4 as uuidv4} from 'uuid';
-import StorageServiceApi from './StorageServiceAPI';
+import storageApi from './StorageServiceAPI';
/**
* @interface StoreListElement
@@ -26,7 +26,7 @@ class StorageListApi {
/**
* @type {StorageServiceApi}
*/
- this.api = new StorageServiceApi();
+ this.api = storageApi;
this.api.create({key, description, author, service_name, value: []});
/**
* @type {Object}
diff --git a/src/api/StorageServiceAPI.js b/src/api/StorageServiceAPI.js
index cdaa2b5..0a3934b 100644
--- a/src/api/StorageServiceAPI.js
+++ b/src/api/StorageServiceAPI.js
@@ -68,5 +68,6 @@ class StorageServiceApi {
return data;
}
}
+const storageApi = new StorageServiceApi();
-export default StorageServiceApi;
+export default storageApi;
diff --git a/src/app.html b/src/app.html
index 3b8b5de..f47cd01 100644
--- a/src/app.html
+++ b/src/app.html
@@ -21,6 +21,42 @@
+
+
+ |
+
+
+
+
+ |
+
+
+
+
+
+
+
+
+
+
+