diff --git a/application/views/lehre/lehrauftrag/acceptLehrauftrag.php b/application/views/lehre/lehrauftrag/acceptLehrauftrag.php
index af0b25d30..eb70cad99 100644
--- a/application/views/lehre/lehrauftrag/acceptLehrauftrag.php
+++ b/application/views/lehre/lehrauftrag/acceptLehrauftrag.php
@@ -68,8 +68,8 @@ $this->load->view(
@@ -148,11 +148,11 @@ $(function() {
});
// Show only rows with akzeptierte lehrauftraege
- $("#show-accepted").click(function(){
+ $("#show-approved").click(function(){
$('#filterTabulator').tabulator('setFilter', [
- {field: 'bestellt', type: '!=', value: null}, // filter by bestellt must be set
- {field: 'erteilt', type: '!=', value: null}, // and erteilt must be set
- {field: 'akzeptiert', type: '!=', value: null} // and akzeptiert must be set
+ {field: 'bestellt', type: '!=', value: null}, // filter when is bestellt
+ {field: 'erteilt', type: '!=', value: null}, // and is erteilt
+ {field: 'akzeptiert', type: '=', value: null} // and is not akzeptiert
]
);
});