c4ad61ac0f
no issue If you scheduled a post to a specific newsletter it was no longer visible in the scheduled state of the publish menu making it difficult to know the behaviour when coming back to a scheduled post. - duplicated the newsletter dropdown from the draft to the scheduled state components and disabled it the same as the other recipient options - added temporary workaround for missing newsletter embed for the posts endpoint in the API - adds `newsletterId` attribute to the post model - uses `post.newsletterId` to find the matching newsletter model from the available newsletters list
10 lines
265 B
JavaScript
10 lines
265 B
JavaScript
module.exports = {
|
|
extends: "recommended",
|
|
|
|
rules: {
|
|
'no-forbidden-elements': ['meta', 'html', 'script'],
|
|
'no-implicit-this': {allow: ['noop', 'now', 'site-icon-style', 'accent-color-background']},
|
|
'no-inline-styles': false
|
|
}
|
|
};
|