diff options
| author | okpierre <1679025+okpierre@users.noreply.github.com> | 2020-02-13 01:53:02 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-13 15:53:02 +0900 |
| commit | 86107b27109dfff4e2277ea2d00f294b24e47e31 (patch) | |
| tree | 7163df96fcbefa7d7f02b5b68a9ca801a76fd5e5 /src/client | |
| parent | :art: (diff) | |
| download | sharkey-86107b27109dfff4e2277ea2d00f294b24e47e31.tar.gz sharkey-86107b27109dfff4e2277ea2d00f294b24e47e31.tar.bz2 sharkey-86107b27109dfff4e2277ea2d00f294b24e47e31.zip | |
Fix For Messaging Icon (#5933)
* Add icon for messaging
This will add icon within messaging
* Update messaging-room.message.vue
Link to missing icon
Diffstat (limited to 'src/client')
| -rw-r--r-- | src/client/assets/remove.png | bin | 0 -> 424 bytes | |||
| -rw-r--r-- | src/client/pages/messaging-room.message.vue | 2 |
2 files changed, 1 insertions, 1 deletions
diff --git a/src/client/assets/remove.png b/src/client/assets/remove.png Binary files differnew file mode 100644 index 0000000000..c2e222a0fc --- /dev/null +++ b/src/client/assets/remove.png diff --git a/src/client/pages/messaging-room.message.vue b/src/client/pages/messaging-room.message.vue index bfb6b73ad8..ca0f231ade 100644 --- a/src/client/pages/messaging-room.message.vue +++ b/src/client/pages/messaging-room.message.vue @@ -4,7 +4,7 @@ <div class="content"> <div class="balloon _panel" :data-no-text="message.text == null"> <button class="delete-button" v-if="isMe" :title="$t('delete')" @click="del"> - <img src="/assets/desktop/remove.png" alt="Delete"/> + <img src="/assets/remove.png" alt="Delete"/> </button> <div class="content" v-if="!message.isDeleted"> <mfm class="text" v-if="message.text" ref="text" :text="message.text" :i="$store.state.i"/> |