Skip to content

Commit

Permalink
wording tweak #215 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
vladimiry committed Nov 26, 2019
1 parent d862618 commit 31a11d0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/electron-preload/webview/protonmail/api/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ const endpoints: ProtonmailApi = {
Observable<UnreadOutput>,
Observable<BatchEntityUpdatesCounterOutput>
] = [
new Observable<{ title: string }>((observer) => {
new Observable<TitleOutput>((observer) => {
const titleEl = document.querySelector("title");

if (!titleEl) {
Expand Down
2 changes: 1 addition & 1 deletion src/electron-preload/webview/tutanota/api/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ function bootstrapEndpoints(api: Unpacked<ReturnType<typeof resolveProviderApi>>
Observable<UnreadOutput>,
Observable<BatchEntityUpdatesCounterOutput>
] = [
new Observable<{ title: string }>((observer) => {
new Observable<TitleOutput>((observer) => {
observer.next({title: `"title" DOM element listening is not enabled`});
observer.complete();
}),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@
>
<label class="custom-control-label" for="reflectSelectedAccountTitleCheckbox">
Reflect selected account window title to app window title
(<a href="https://github.com/vladimiry/ElectronMail/issues/215">#215</a>)
(see details in <a href="https://github.com/vladimiry/ElectronMail/issues/215">#215</a>)
</label>
</div>
<hr>
Expand Down

0 comments on commit 31a11d0

Please sign in to comment.