mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
Classifiers should respect new story authors escaping.
This commit is contained in:
parent
3499950353
commit
1e6040ec93
1 changed files with 2 additions and 2 deletions
|
@ -495,10 +495,10 @@ var classifier_prototype = {
|
|||
)
|
||||
])
|
||||
])),
|
||||
(story.get('story_authors') && $.make('div', { className: 'NB-modal-field NB-fieldset' }, [
|
||||
(story.story_authors() && $.make('div', { className: 'NB-modal-field NB-fieldset' }, [
|
||||
$.make('h5', 'Story Author'),
|
||||
$.make('div', { className: 'NB-fieldset-fields NB-classifiers' },
|
||||
this.make_authors([story.get('story_authors')])
|
||||
this.make_authors([story.story_authors()])
|
||||
)
|
||||
])),
|
||||
(story.get('story_tags').length && $.make('div', { className: 'NB-modal-field NB-fieldset' }, [
|
||||
|
|
Loading…
Add table
Reference in a new issue