Merge pull request #15232 from surajshetty3416/fixes-and-improvements
UI enhancements
This commit is contained in:
commit
9a50044003
@ -14,7 +14,7 @@
|
||||
>
|
||||
<div slot="subtitle">
|
||||
<span>{{item.recent_message.sender}}: </span>
|
||||
<span>{{item.recent_message.content}}</span>
|
||||
<span>{{item.recent_message.content | striphtml}}</span>
|
||||
</div>
|
||||
</item-list-card>
|
||||
</div>
|
||||
|
@ -9,7 +9,7 @@
|
||||
@remove-message="clear_last_sync_message"
|
||||
></notification-message>
|
||||
|
||||
<div class="flex justify-between align-flex-end">
|
||||
<div class="flex justify-between align-flex-end margin-bottom">
|
||||
<h5>{{ page_title }}</h5>
|
||||
|
||||
<button class="btn btn-primary btn-sm publish-items"
|
||||
|
@ -60,3 +60,7 @@ Vue.directive('img-src', {
|
||||
handleImage(el, binding.value);
|
||||
}
|
||||
});
|
||||
|
||||
Vue.filter('striphtml', function (text) {
|
||||
return strip_html(text);
|
||||
});
|
Loading…
x
Reference in New Issue
Block a user