Skip to content

Commit d5071d7

Browse files
committed
prettier
1 parent 1bb80d5 commit d5071d7

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

src/SIL.XForge.Scripture/ClientApp/src/app/checking/checking/checking-questions/checking-questions.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,12 +96,12 @@ export class CheckingQuestionsComponent implements OnInit, OnChanges {
9696
.queryFirstUnansweredQuestion(projectProfileDoc.id, this.userService.currentUserId, this.destroyRef)
9797
.then(query => {
9898
this._firstUnansweredQuestion = query;
99-
merge(query.ready$, query.localChanges$, query.remoteChanges$, query.remoteDocChanges$)
99+
(merge(query.ready$, query.localChanges$, query.remoteChanges$, query.remoteDocChanges$)
100100
.pipe(quietTakeUntilDestroyed(this.destroyRef))
101101
.subscribe(() => {
102102
this.changeDetector.markForCheck();
103103
}),
104-
finalize(() => query.dispose());
104+
finalize(() => query.dispose()));
105105
});
106106
}
107107

src/SIL.XForge.Scripture/ClientApp/src/app/checking/checking/single-button-audio-player/single-button-audio-player.component.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ button {
2323

2424
// Create a radial gradient and then remove the center of it with a conic gradient to create a circular progress bar
2525
// The transition between white and transparent happens over several percentage points to avoid aliasing
26-
background: radial-gradient(white 57%, transparent 61% 100%),
26+
background:
27+
radial-gradient(white 57%, transparent 61% 100%),
2728
conic-gradient(var(--theme) var(--audio-progress), $progressBackgroundColor 0);
2829
}
2930

src/SIL.XForge.Scripture/ClientApp/src/app/users/collaborators/collaborators.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ <h2>
128128
</table>
129129
</div>
130130
} @else {
131-
<mat-hint class="no-users-label" id="{{ `no-users-${userList.userType}`}}">{{
131+
<mat-hint class="no-users-label" id="{{ `no-users-${userList.userType}` }}">{{
132132
t("no_users_found")
133133
}}</mat-hint>
134134
}

src/SIL.XForge.Scripture/ClientApp/src/offline.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
display: flex;
1414
justify-content: center;
1515
align-items: center;
16-
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif,
16+
font-family:
17+
-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif,
1718
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
1819
font-size: 100%;
1920
font-weight: 400;

0 commit comments

Comments
 (0)