Skip to content
This repository has been archived by the owner on Mar 15, 2024. It is now read-only.

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kspearrin committed Jan 30, 2017
1 parent f3b4cdc commit df21f89
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/app/services/importService.js
Original file line number Diff line number Diff line change
Expand Up @@ -2333,8 +2333,8 @@
parseFieldsToNotes(2, value, login);
}

if (login.name && login.name !== '--' && type !== 'Web Logins' && type !== 'Servers'
&& type !== 'Email Accounts') {
if (login.name && login.name !== '--' && type !== 'Web Logins' && type !== 'Servers' &&
type !== 'Email Accounts') {
login.name = type + ': ' + login.name;
}

Expand Down
2 changes: 1 addition & 1 deletion src/app/settings.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
angular.module("bit")
.constant("appSettings", {"rememberedEmailCookieName":"bit.rememberedEmail","apiUri":"http://localhost:4000","version":"1.7.0","environment":"Development"});
.constant("appSettings", {"rememberedEmailCookieName":"bit.rememberedEmail","apiUri":"http://localhost:4000","version":"1.8.0","environment":"Development"});

0 comments on commit df21f89

Please sign in to comment.