-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Display missing "about" section in admin blog show page #430
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@@ -46,5 +46,7 @@ | |||
}, with_context = false) }} | |||
</div> | |||
|
|||
{{ parent() }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably, the original idea was to show that we can override content of parent block, but I can be wrong here...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't remember ... but the rest of admin/* templates include this parent()
... so this is probably a bug.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
@@ -46,5 +46,7 @@ | |||
}, with_context = false) }} | |||
</div> | |||
|
|||
{{ parent() }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't remember ... but the rest of admin/* templates include this parent()
... so this is probably a bug.
@@ -34,8 +34,7 @@ | |||
*/ | |||
class LoadFixtures implements FixtureInterface, ContainerAwareInterface |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ContainerAwareInterface
should be removed here too
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no. The class is still container aware (but it uses the trait to implement it instead of doing it explicitly)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm sorry! I'm not very familiar with traits.
Thanks @yceruto. |
Also I've added in this PR some minor simplifications ;)