Skip to content

Commit c43c810

Browse files
authored
Fix configure hide/show when subprojects present (#2781)
The configure page (`/builds/<id>/configure`) currently has an infinite recursion issue which causes browsers to kill the process due to high memory usage when viewing projects with subprojects. This is due to a vue event handler mistakenly written as a binding.
2 parents c1ddf3d + 16b4461 commit c43c810

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

resources/js/vue/components/BuildConfigure.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@
106106
<td>
107107
<a
108108
class="cdash-link"
109-
:click="configure.show = !configure.show"
109+
@click="configure.show = !configure.show"
110110
>
111111
<span v-show="!configure.show">View</span>
112112
<span v-show="configure.show">Hide</span>

0 commit comments

Comments
 (0)