Skip to content

Commit bd4e4ce

Browse files
author
Andrey Helldar
authored
Fixed a bug with hiding the selection of deprecated methods
1 parent 1c02c5a commit bd4e4ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/views/scripts.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@
138138
},
139139
140140
hasDeprecated() {
141-
return this.hasRoute('deprecated');
141+
return _.filter(this.routes, item => item.deprecated === true).length > 0;
142142
},
143143
144144
hasModules() {

0 commit comments

Comments
 (0)