From d45ff363b2d3106e392f899149efaf025aae9ed6 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Wed, 27 Feb 2019 11:45:10 -0500 Subject: [PATCH] cap disabled --- jslib | 2 +- src/popup/settings/options.component.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/jslib b/jslib index d4fab1c697..b9267c521d 160000 --- a/jslib +++ b/jslib @@ -1 +1 @@ -Subproject commit d4fab1c6976f6b47fff89ef89404d6fcc7583021 +Subproject commit b9267c521ddffce35932a0cc2e9726d30b80c60d diff --git a/src/popup/settings/options.component.ts b/src/popup/settings/options.component.ts index 2d42ff319c..cef4b6aca8 100644 --- a/src/popup/settings/options.component.ts +++ b/src/popup/settings/options.component.ts @@ -156,7 +156,7 @@ export class OptionsComponent implements OnInit { async saveClearClipboard() { await this.storageService.save(ConstantsService.clearClipboardKey, this.clearClipboard); this.analytics.eventTrack.next({ - action: 'Set Clear Clipboard ' + (this.clearClipboard == null ? 'disabled' : this.clearClipboard), + action: 'Set Clear Clipboard ' + (this.clearClipboard == null ? 'Disabled' : this.clearClipboard), }); }