Skip to content

Commit

Permalink
Fix missing function error in studip action menu, fixes #807 (#808)
Browse files Browse the repository at this point in the history
Co-authored-by: Dennis Benz <dennis.benz@uos.de>
  • Loading branch information
dennis531 and Dennis Benz authored Oct 11, 2023
1 parent f030cd9 commit 51bfd59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vueapp/components/Studip/StudipActionMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ export default {
});
},
shouldCollapse () {
const collapseAt = this.collapseAt ?? this.getStudipConfig('ACTIONMENU_THRESHOLD');
const collapseAt = this.collapseAt ?? window.STUDIP.config['ACTIONMENU_THRESHOLD'];
if (collapseAt === false) {
return false;
Expand Down

0 comments on commit 51bfd59

Please sign in to comment.