Fix components

pull/5867/head^2
Daniel Supernault 1 year ago
parent 34c5dc75ed
commit 93dde13ea0
No known key found for this signature in database
GPG Key ID: 23740873EE6F76A1

@ -281,8 +281,7 @@
{{ relationship.blocking ? 'Unblock' : 'Block' }}
</b-dropdown-item>
<b-dropdown-item :href="'/i/report?type=user&id=' + profile.id"
link-class="text-danger font-weight-bold">Report
<b-dropdown-item :href="'/i/report?type=user&id=' + profile.id" link-class="text-danger font-weight-bold">Report
</b-dropdown-item>
</div>
</b-dropdown>
@ -620,6 +619,7 @@ export default {
this.$emit('unfollow');
}
}
}
</script>

@ -717,7 +717,7 @@
<div class="media-body">
<div class="form-group">
<label class="font-weight-bold text-muted small">Media Description</label>
<textarea class="form-control" v-model="media[carouselCursor].alt" placeholder="Add a media description here..." maxlength="{{config.uploader.max_altext_length}}"></textarea>
<textarea class="form-control" v-model="media[carouselCursor].alt" placeholder="Add a media description here..." :maxlength="config.uploader.max_altext_length"></textarea>
<p class="help-text small text-muted mb-0 d-flex justify-content-between">
<span>Describe your photo for people with visual impairments.</span>
<span>{{media[carouselCursor].alt ? media[carouselCursor].alt.length : 0}}/{{config.uploader.max_altext_length}}</span>

Loading…
Cancel
Save