mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-04-01 02:41:39 -05:00
Removed featured/unfeatured toast and updated copy
Refs https://github.com/TryGhost/Team/issues/2923
This commit is contained in:
parent
70316c6b15
commit
7a6670a993
4 changed files with 5 additions and 16 deletions
|
@ -27,14 +27,6 @@ const messages = {
|
|||
single: 'Post successfully reverted to a draft',
|
||||
multiple: '{count} posts successfully reverted to drafts'
|
||||
},
|
||||
featured: {
|
||||
single: 'Post featured successfully',
|
||||
multiple: '{count} posts featured successfully'
|
||||
},
|
||||
unfeatured: {
|
||||
single: 'Post unfeatured successfully',
|
||||
multiple: '{count} posts unfeatured successfully'
|
||||
},
|
||||
accessUpdated: {
|
||||
single: 'Post access successfully updated',
|
||||
multiple: 'Post access successfully updated for {count} posts'
|
||||
|
@ -286,8 +278,6 @@ export default class PostsContextMenu extends Component {
|
|||
const updatedModels = this.selectionList.availableModels;
|
||||
yield this.performBulkEdit('feature');
|
||||
|
||||
this.notifications.showNotification(this.#getToastMessage('featured'), {type: 'success'});
|
||||
|
||||
// Update the models on the client side
|
||||
for (const post of updatedModels) {
|
||||
// We need to do it this way to prevent marking the model as dirty
|
||||
|
@ -313,8 +303,6 @@ export default class PostsContextMenu extends Component {
|
|||
const updatedModels = this.selectionList.availableModels;
|
||||
yield this.performBulkEdit('unfeature');
|
||||
|
||||
this.notifications.showNotification(this.#getToastMessage('unfeatured'), {type: 'success'});
|
||||
|
||||
// Update the models on the client side
|
||||
for (const post of updatedModels) {
|
||||
// We need to do it this way to prevent marking the model as dirty
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<div class="modal-content" data-test-modal="add-tags">
|
||||
<header class="modal-header">
|
||||
<h1>Which tags do you want to add?</h1>
|
||||
<h1>Add tags</h1>
|
||||
</header>
|
||||
<button type="button" class="close" title="Close" {{on "click" (fn @close false)}} data-test-button="close">{{svg-jar "close"}}<span class="hidden">Close</span></button>
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<div class="modal-content" data-test-modal="edit-posts-access" {{did-insert this.setup}}>
|
||||
<header class="modal-header">
|
||||
<h1>Modify access for {{if @data.selectionList.isSingle 'this post' (concat @data.selectionList.count ' posts')}}</h1>
|
||||
<h1>Change post access {{unless @data.selectionList.isSingle (concat 'for ' @data.selectionList.count ' posts')}}</h1>
|
||||
</header>
|
||||
<button type="button" class="close" title="Close" {{on "click" (fn @close false)}} data-test-button="close">{{svg-jar "close"}}<span class="hidden">Close</span></button>
|
||||
|
||||
|
|
|
@ -218,7 +218,7 @@
|
|||
|
||||
.ember-power-select-multiple-option {
|
||||
margin: 2px!important;
|
||||
padding: 1px 6px 2px;
|
||||
padding: 1px 0 2px 6px;
|
||||
border-radius: 3px;
|
||||
font-size: 0.93em;
|
||||
font-weight: 500;
|
||||
|
@ -245,8 +245,9 @@
|
|||
.ember-power-select-multiple-remove-btn {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
width: 20px;
|
||||
width: 22px;
|
||||
height: 100%;
|
||||
margin-top: 1px;
|
||||
line-height: 0;
|
||||
padding: 0;
|
||||
justify-content: center;
|
||||
|
|
Loading…
Add table
Reference in a new issue