Skip to content

Commit

Permalink
fix: wrong option key 'keepUnreachableObjects'
Browse files Browse the repository at this point in the history
  • Loading branch information
D-D-H committed Oct 23, 2023
1 parent a6f31af commit 6c5cfaf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions frontend/frontend.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ tasks.register('build') {

tasks.register('clean') {
doFirst(() -> {
delete 'build'
delete project(':server').projectDir.toPath().resolve('src/main/resources/static')
delete 'dist'
})
}
4 changes: 2 additions & 2 deletions frontend/src/components/heapdump/Setup.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import { t } from '@/i18n/i18n';
const emit = defineEmits(['confirmAnalysisOptions']);
const options = reactive({
keepUnreachableObjects: true,
keep_unreachable_objects: true,
strictness: 'stop'
});
Expand All @@ -35,7 +35,7 @@ function onConfirm() {
size="large"
>
<el-form-item label="Keep unreachable objects">
<el-switch v-model="options.keepUnreachableObjects"></el-switch>
<el-switch v-model="options.keep_unreachable_objects"></el-switch>
<el-popover
placement="top"
:width="600"
Expand Down

0 comments on commit 6c5cfaf

Please sign in to comment.