mirror of
https://github.com/plankanban/planka.git
synced 2025-12-18 17:23:21 +03:00
fix: Add clearfix and missing id property
This commit is contained in:
@@ -101,6 +101,12 @@
|
|||||||
|
|
||||||
.wrapper {
|
.wrapper {
|
||||||
padding: 6px 8px 0;
|
padding: 6px 8px 0;
|
||||||
|
|
||||||
|
&:after {
|
||||||
|
clear: both;
|
||||||
|
content: "";
|
||||||
|
display: table;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
:global(.card):hover {
|
:global(.card):hover {
|
||||||
|
|||||||
@@ -144,7 +144,7 @@ module.exports = {
|
|||||||
|
|
||||||
if (Action.INTERNAL_NOTIFIABLE_TYPES.includes(action.type)) {
|
if (Action.INTERNAL_NOTIFIABLE_TYPES.includes(action.type)) {
|
||||||
if (Action.PERSONAL_NOTIFIABLE_TYPES.includes(action.type)) {
|
if (Action.PERSONAL_NOTIFIABLE_TYPES.includes(action.type)) {
|
||||||
if (values.user !== action.data.user.id) {
|
if (values.user.id !== action.data.user.id) {
|
||||||
await sails.helpers.notifications.createOne.with({
|
await sails.helpers.notifications.createOne.with({
|
||||||
values: {
|
values: {
|
||||||
action,
|
action,
|
||||||
|
|||||||
Reference in New Issue
Block a user