summaryrefslogtreecommitdiffstats
path: root/client/components
Commit message (Collapse)AuthorAgeFilesLines
* Fix card count positionBenjamin Tissoires2019-05-142-1/+5
| | | | | | | | | | When introducing markdown in the title (b795115042c2eb6bccb), the card count got pushed outside of the List Header. Add its own style (by manually merge small and quiet), and restore its original placement. Fixes #2403
* Added BIDI support to "Add Card" #884Guy Zylberberg2019-05-131-2/+2
|
* - [View markdown on List names, Custom Fields (Text and Dropdown), Label names,Lauri Ojansivu2019-05-118-13/+32
| | | | | | | | All Boards view Board names and Board descriptions](https://github.com/wekan/wekan/issues/2334). Thanks to shaygover and xet7 ! Related #2334
* - Fix translation name in Wekan menu: oc to Occitan.Lauri Ojansivu2019-05-112-0/+4
| | | | Thanks to xet7 !
* - Add Feature: Move board to Archive button at each board at All Boards page.Lauri Ojansivu2019-05-103-2/+22
| | | | | | Thanks to xet7 ! Related #2389
* Merge pull request #2384 from Akuket/origin/edgeLauri Ojansivu2019-05-095-2/+34
|\ | | | | Delete user feature
| * Delete user featureguillaume2019-04-265-2/+34
| |
* | Fix missing profile checks.Lauri Ojansivu2019-05-098-21/+25
| | | | | | | | Thanks to justinr1234 !
* | Fixed RTL issue #884Guy Zylberberg2019-05-087-12/+13
|/
* Merge branch 'Akuket-edge' into edgeLauri Ojansivu2019-04-243-25/+147
|\
| * fix lintsguillaume2019-04-241-3/+3
| |
| * Loading authentication pageguillaume2019-04-243-23/+145
| |
* | - Remove from card menu, because they also exist at card:Lauri Ojansivu2019-04-241-7/+7
|/ | | | | | | | | members, labels, attachments, dates received/start/due/end. Thanks to sfahrenholz, jrsupplee and xet7 ! Closes #2242, related https://community.vanila.io/?t=517527b6-3d84-4e9d-b2ec-6f560a9cfdf7
* remove featureguillaume2019-04-233-6/+74
|
* Issue : Mobile UI Center cards in list view #2371hupptechnologies2019-04-231-0/+5
| | | | Resolved #2371
* Change enter => searchLauri Ojansivu2019-04-201-1/+1
|
* fix lintsguillaume2019-04-191-8/+7
|
* Number of usersguillaume2019-04-193-17/+38
|
* Search user in admin panelguillaume2019-04-193-3/+43
|
* Issue: Full width of lists and space before first list #2336hupp-mac-42019-04-182-4/+11
| | | | Resolved #2336
* Combine to same line.Lauri Ojansivu2019-04-081-2/+1
|
* [Fix: Description of Board is out of visible after Feature "Duplicate ↵Lauri Ojansivu2019-04-082-4/+6
| | | | | | | | Board"](https://github.com/wekan/wekan/issues/2324). Thanks to sfahrenholz and xet7 ! Closes #2324
* - Add Duplicate Board tooltip, and remove adding text "Copy" to duplicated ↵Lauri Ojansivu2019-04-061-1/+3
| | | | | | board. Thanks to xet7 !
* Fix lint errors.Lauri Ojansivu2019-04-061-1/+1
| | | | Thanks to xet7 !
* Merge remote-tracking branch 'Angtrim/feature-duplicate' into edgeLauri Ojansivu2019-04-065-4/+35
|\
| * Minor fixesAngelo Gallarello2019-04-052-3/+14
| |
| * FixesAngelo Gallarello2019-02-124-3/+23
| |
* | Issue: Center (or reduce left margin) in card view on mobile browser #2188hupptechnologies2019-04-051-1/+2
| | | | | | | | Resolved #2188
* | list: do not use IntersectionObserver to reduce CPU usageBenjamin Tissoires2019-04-011-20/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | Switch back to a custom spinner detection, as the IntersectionObserver is eating a lot of CPU resources on idle. This should also take care of #2250 properly: the previous `onDestroyed()` was removing the resize and scroll callbacks, but they were not unique enough, and they were shared across swimlanes. So if a list had 2 swimlanes with spinners, when one was removed, the other was not triggering its callbacks anymore. Related: #2294
* | - [Add back zoom fixes of #2250](https://github.com/wekan/wekan/issues/2250).Lauri Ojansivu2019-03-302-57/+51
| | | | | | | | Thanks to xet7 !
* | Revert spinner etc fixes of Wekan v2.56, because of some new bugs.Lauri Ojansivu2019-03-292-51/+57
| | | | | | | | | | | | Thanks to gerroon ! Related #2250
* | list: disconnect infinite-scroll observer to prevent memory leakBenjamin Tissoires2019-03-261-2/+6
| |
* | list: move the spinner into its own blaze componentBenjamin Tissoires2019-03-262-37/+47
| | | | | | | | | | | | | | | | | | | | This way, when a list is at the maximum number of cards shown and adding a new card would make the spinner appear, the list would load the next N items. This can happen if user A and B are both looking at the same board, B adds a new cards, and A will see the spinner and will not be able to remove it.
* | list: make sure the spinner of infinite scrolling doesn't show on loadBenjamin Tissoires2019-03-261-3/+10
| | | | | | | | | | | | | | | | | | | | | | When loading a board on a high resolution screen, there is a chance there is not enough cards displayed and the spinner is still there, spinning forever. Add an idle callback that checks if the spinner is still there, and while it is there, extend the number of cards to show. Fixes #2250
* | list: simplify infinite scrollingBenjamin Tissoires2019-03-261-44/+17
| | | | | | | | | | | | Use IntersectionObserver instead of custom made one. This adds the benefit of not loading any extra cards if the list is not shown on screen
* | Removed commented out text.Lauri Ojansivu2019-03-241-4/+0
| |
* | Fix filenames and urls.Lauri Ojansivu2019-03-231-5/+5
| |
* | Remove extra title quotes, so that Custom Product Name comes visible.Lauri Ojansivu2019-03-221-1/+1
| | | | | | | | Thanks to xet7 !
* | - More whitelabeling.Lauri Ojansivu2019-03-214-19/+24
| | | | | | | | Thanks to xet7 !
* | Merge pull request #2270 from andresmanelli/fix_2266Lauri Ojansivu2019-03-211-1/+1
|\ \ | | | | | | Fix #2266
| * | Fix #2266Andrés Manelli2019-03-181-1/+1
| | |
* | | Merge branch 'edge' of https://github.com/andresmanelli/wekan into ↵Lauri Ojansivu2019-03-205-10/+35
|\ \ \ | | | | | | | | | | | | andresmanelli-edge
| * | | Lint fixAndrés Manelli2019-03-162-3/+3
| | | |
| * | | - Fix card copy & move between boards with customFieldsAndrés Manelli2019-03-165-9/+33
| | | | | | | | | | | | | | | | | | | | | | | | - Fix card copy & move between boards with labels with same name - Fix activities for labels when copying and moving card - Fix activities for customFields when copying and moving card
| * | | Migrate customFieldsAndrés Manelli2019-03-161-2/+3
| |/ /
* / / make emails for invitations all lowercase for compatibility with ↵Ole Langbehn2019-03-161-1/+1
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | AccountsTemplates Email addresses for invitations are stored case sensitive in mongo, together with the invitation codes. When someone tries to sign up due to an invitation, in the sign up form, due to AccountsTemplates defaults, the email address is lowercased on blur of the textbox. When they then try to sign in, they get an error about the invitation code not existing. This makes it impossible to successfully invite people using non-lowercased email addresses. This patch lowercases the emails on the client side when inviting them. Other possibilities would be to lowercase them on the server side before storing them to mongodb, making a case insensitive search on mongodb, or making the email input field in the sign up form not lowercase the email string. This patch was chosen in favor of the other possibilities because of its simplicity.
* | Fix LDAP login.Lauri Ojansivu2019-03-151-14/+5
| | | | | | | | | | | | | | Thanks to xet7 ! Closes wekan/wekan-ldap#43, closes wekan/wekan-snap#85
* | Try to fix [LDAP Login: "Login forbidden", ReferenceError: req is not ↵Lauri Ojansivu2019-03-141-5/+5
| | | | | | | | | | | | | | | | | | | | defined](https://github.com/wekan/wekan-ldap/issues/44). Please test. Thanks to xet7 ! Closes wekan/wekan-ldap#44
* | Remove ordering of cards by stars/color/description, so that cards would not ↵Lauri Ojansivu2019-03-141-1/+1
| | | | | | | | | | | | | | | | reorder all the time. Thanks to xet7 ! Closes #2241
* | Revert hiding of Subtask boards, because of feedback from Wekan users,Lauri Ojansivu2019-03-131-1/+0
| | | | | | | | | | | | that need Subtask boards to be visible. Thanks to xet7 !