diff --git a/app/assets/javascripts/ui_models/application.ts b/app/assets/javascripts/ui_models/application.ts
index 5d2f5a0ab..51d6594f2 100644
--- a/app/assets/javascripts/ui_models/application.ts
+++ b/app/assets/javascripts/ui_models/application.ts
@@ -98,7 +98,7 @@ export class WebApplication extends SNApplication {
(this.scope! as any).application = undefined;
this.scope!.$destroy();
this.scope = undefined;
- /** Allow our Angular directives to be destroyed and any pending digest cycles
+ /** Allow our Angular directives to be destroyed and any pending digest cycles
* to complete before destroying the global application instance and all its services */
setImmediate(() => {
super.deinit();
@@ -210,7 +210,7 @@ export class WebApplication extends SNApplication {
scope.onCancel = customCancel;
scope.application = this;
const el = this.$compile!(`
-
`)(scope);
angular.element(document.body).append(el);
@@ -233,11 +233,11 @@ export class WebApplication extends SNApplication {
const scope = this.scope!.$new(true) as InputModalScope;
scope.type = "password";
scope.title = "Decryption Assistance";
- scope.message = `Unable to decrypt this item with your current keys.
+ scope.message = `Unable to decrypt this item with your current keys.
Please enter your account password at the time of this revision.`;
scope.callback = callback;
const el = this.$compile!(
- ``
)(scope as any);
angular.element(document.body).append(el);
@@ -249,9 +249,9 @@ export class WebApplication extends SNApplication {
scope.content = content;
scope.application = this;
const el = this.$compile!(
- ``
)(scope);
angular.element(document.body).append(el);
}
-}
\ No newline at end of file
+}