mirror of
https://github.com/wekan/wekan.git
synced 2026-02-01 14:11:48 +01:00
Reformat My Cards page
* make the page more visually pleasing
* user +viewer to display Markdown in titles
* modify `colorClass()` in Lists model to return 'list-header-{color}'
* modify `colorClass()` of Swimlanes model to return 'swimlane-{color}'
This commit is contained in:
parent
a0b72d0287
commit
e793e71163
7 changed files with 75 additions and 24 deletions
|
|
@ -27,6 +27,7 @@ Meteor.publish('boards', function() {
|
|||
{
|
||||
fields: {
|
||||
_id: 1,
|
||||
boardId: 1,
|
||||
archived: 1,
|
||||
slug: 1,
|
||||
title: 1,
|
||||
|
|
@ -62,7 +63,9 @@ Meteor.publish('mySwimlanes', function() {
|
|||
fields: {
|
||||
_id: 1,
|
||||
title: 1,
|
||||
boardId: 1,
|
||||
type: 1,
|
||||
color: 1,
|
||||
sort: 1,
|
||||
},
|
||||
// sort: {
|
||||
|
|
@ -91,7 +94,10 @@ Meteor.publish('myLists', function() {
|
|||
{
|
||||
fields: {
|
||||
_id: 1,
|
||||
boardId: 1,
|
||||
swimlaneId: 1,
|
||||
title: 1,
|
||||
color: 1,
|
||||
type: 1,
|
||||
sort: 1,
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue