fixed case in class name

This commit is contained in:
Henry Jameson 2020-06-02 01:16:10 +03:00
parent 1f205b87ac
commit de3a376beb
1 changed files with 4 additions and 4 deletions

View File

@ -28,17 +28,17 @@
</small>
<small
v-if="showReasonMutedThread && muteWordHits.length === 0"
class="mutedThread"
class="muted-thread"
>
{{ $t('status.thread_muted') }}
</small>
<small
v-if="showReasonMutedThread && muteWordHits.length > 0"
class="mutedThread"
class="muted-Thread"
>
{{ $t('status.thread_muted_and_words') }}
</small>
<small class="muteWords">{{ muteWordHits.join(', ') }}</small>
<small class="mute-words">{{ muteWordHits.join(', ') }}</small>
<a
href="#"
class="unmute"
@ -658,7 +658,7 @@ $status-margin: 0.75em;
margin-left: auto;
}
.mutedThread, .muteWords {
.muted-thread, .mute-words {
margin-left: 10px;
}
}