Skip to content

Commit

Permalink
Small fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianStehle committed Feb 15, 2024
1 parent 8ebb6ec commit 177092e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,10 @@ public Task InsertAsync(UserNotification notification,
public Task TrackAsync(TrackingKey identifier, DeliveryResult result,
CancellationToken ct = default)
{
Guard.NotNullOrEmpty(identifier.Channel);
if (string.IsNullOrWhiteSpace(identifier.Channel))
{
return Task.CompletedTask;
}

var counterMap = CounterMap.ForChannel(identifier.Channel!, result.Status);
var counterKey = identifier;
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/app/style/_common.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1262,7 +1262,7 @@ em-emoji-picker {

.loader {
div {
display: inline-block;
display: inline-block !important;
}
}

Expand Down
1 change: 1 addition & 0 deletions frontend/src/sdk/ui/style/sdk.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
@import 'components';
@import 'notifications';
@import 'topics';
line-height: 1.5;

.notifo {
&-button {
Expand Down

0 comments on commit 177092e

Please sign in to comment.