From c0e4e6004a755420022d0377e7318f8d156dffc3 Mon Sep 17 00:00:00 2001 From: Roman Hotsiy Date: Tue, 17 Nov 2015 01:14:55 +0200 Subject: [PATCH] Fix lint error --- lib/utils/SchemaManager.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils/SchemaManager.js b/lib/utils/SchemaManager.js index 428cdb91..6f991c27 100644 --- a/lib/utils/SchemaManager.js +++ b/lib/utils/SchemaManager.js @@ -38,7 +38,7 @@ export default class SchemaManager { /* calculate common used values */ init() { - this.apiUrl = this._schema.schemes[0] + "://" + this._schema.host + this._schema.basePath; + this.apiUrl = this._schema.schemes[0] + '://' + this._schema.host + this._schema.basePath; } get schema() {