Compare commits
3 Commits
dist/eole/
...
pkg/stable
Author | SHA1 | Date | |
---|---|---|---|
937ec6f4ca | |||
1de7abe9fd | |||
862c3651c0 |
@@ -44,7 +44,7 @@ document.addEventListener('DOMContentLoaded', function () {
|
||||
weekNumbers: true,
|
||||
selectable: true,
|
||||
events: 'event/load',
|
||||
eventLimit: 4,
|
||||
eventLimit: 8,
|
||||
eventDrop: function eventDrop(info) {
|
||||
info.revert();
|
||||
},
|
||||
|
@@ -83,7 +83,7 @@
|
||||
</label>
|
||||
<select class="select2entity" id="tasksubmit" name="tasksubmit">
|
||||
<option></option>
|
||||
{% for task in tasks %}
|
||||
{% for task in tasks|sort((a, b) => a.displayname <=> b.displayname) %}
|
||||
<option value="{{task.id}}">{{task.displayname}}</option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
@@ -169,7 +169,7 @@
|
||||
</label>
|
||||
<select class="select2entity" id="taskupdate" name="taskupdate">
|
||||
<option></option>
|
||||
{% for task in tasks %}
|
||||
{% for task in tasks|sort((a, b) => a.displayname <=> b.displayname) %}
|
||||
<option value="{{task.id}}">{{task.displayname}}</option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
|
Reference in New Issue
Block a user