1
0
mirror of https://github.com/flarum/core.git synced 2025-08-06 08:27:42 +02:00

Change button class for new post controls location

This commit is contained in:
Toby Zerner
2015-09-08 10:30:22 +09:30
parent f8b96c6ca9
commit f3bbcffc28

View File

@@ -14,7 +14,7 @@ export default function() {
items.add('like',
Button.component({
children: app.trans(isLiked ? 'likes.unlike_action' : 'likes.like_action'),
className: 'Button Button--text',
className: 'Button Button--link',
onclick: () => {
isLiked = !isLiked;