Browse Source

Fix reply's subtitle color

master
Eduard Kuzmenko 3 years ago
parent
commit
30e923f119
  1. 5
      src/lib/appManagers/appMessagesManager.ts
  2. 3
      src/scss/partials/_chatBubble.scss

5
src/lib/appManagers/appMessagesManager.ts

@ -2551,7 +2551,10 @@ export class AppMessagesManager { @@ -2551,7 +2551,10 @@ export class AppMessagesManager {
if(usingFullAlbum) {
text = this.getAlbumText(message.grouped_id).message;
addPart('AttachAlbum', undefined, text);
if(!withoutMediaType) {
addPart('AttachAlbum', undefined, text);
}
}
} else {
usingFullAlbum = false;

3
src/scss/partials/_chatBubble.scss

@ -1028,7 +1028,8 @@ $bubble-margin: .25rem; @@ -1028,7 +1028,8 @@ $bubble-margin: .25rem;
margin-top: 0;
}
&-title,
&-title,
&-subtitle,
i {
color: #fff;
}

Loading…
Cancel
Save