1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-13 06:43:35 +00:00

formatting

This commit is contained in:
Kyle Spearrin
2017-11-01 11:41:12 -04:00
parent 6086bf5812
commit d94c6de6f1

View File

@@ -2,7 +2,7 @@ enum Browser {
Chrome = 2,
Firefox = 3,
Opera = 4,
Edge= 5,
Edge = 5,
}
const AnalyticsIds = {
@@ -228,7 +228,7 @@ export default class UtilsService {
saveObjToStorage(key: string, obj: any) {
return new Promise((resolve) => {
chrome.storage.local.set({[key]: obj}, () => {
chrome.storage.local.set({ [key]: obj }, () => {
resolve();
});
});