mirror of
https://github.com/plankanban/planka.git
synced 2025-07-24 23:59:48 +02:00
Set popup max-height, update public files, update dependencies
This commit is contained in:
parent
8fad59db75
commit
796917a0eb
12 changed files with 196 additions and 158 deletions
|
@ -16,7 +16,9 @@
|
|||
box-shadow: 0 8px 16px -4px rgba(9, 45, 66, 0.25),
|
||||
0 0 0 1px rgba(9, 45, 66, 0.08) !important;
|
||||
margin-top: 6px !important;
|
||||
max-height: calc(100% - 70px);
|
||||
overflow: hidden;
|
||||
overflow-y: auto;
|
||||
padding: 0 12px 12px !important;
|
||||
width: 304px;
|
||||
}
|
||||
|
|
|
@ -148,7 +148,7 @@ export default class extends Model {
|
|||
}
|
||||
|
||||
getOrderedInCardActionsQuerySet() {
|
||||
return this.actions.orderBy('id', 'desc');
|
||||
return this.actions.orderBy('id', false);
|
||||
}
|
||||
|
||||
getUnreadNotificationsQuerySet() {
|
||||
|
|
|
@ -95,7 +95,7 @@ export default class extends Model {
|
|||
.filter({
|
||||
isRead: false,
|
||||
})
|
||||
.orderBy('id', 'desc');
|
||||
.orderBy('id', false);
|
||||
}
|
||||
|
||||
deleteWithRelated(user) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue