Skip to content

Commit 5eb2d10

Browse files
committed
refactor: Remove commented out code and unused console.log statements
1 parent 8515865 commit 5eb2d10

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

src/components/jsonFormRendererApi.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ const { data: result, pending, error, refresh } = await useHttp<any>(`/managemen
9999
100100
const identityForm = inject('identityForm') as Ref<any>;
101101
const identityFormDebounced = refDebounced(identityForm, 1000, {
102-
rejectOnCancel: true,
102+
// rejectOnCancel: true,
103103
});
104104
105105
const { data: resultUi, pending: pendingUi, error: errorUi, refresh: refreshUi } = await useHttp<any>(`/management/identities/jsonforms/${props.schemaName}`, {

src/components/quasar-jsonform/util/composition.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ export const useQuasarControl = <
117117
// console.log('input.control.value.data', input.control.value.data)
118118
if (isEmpty(input.control.value?.data) || isNull(input.control.value?.data)) {
119119
input.handleChange(input.control.value?.path, input.control.value?.schema?.default || undefined)
120-
console.log('trigger default', input.control.value?.path, input.control.value.schema.default || undefined)
120+
// console.log('trigger default', input.control.value?.path, input.control.value.schema.default || undefined)
121121
}
122122

123123
// if (typeof input.control.value.data === 'undefined' || input.control.value.data === null && input.control.value.errors) {

src/composables/pushQuery.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ export async function pushQuery(payload: { value: any; key: string; multiple?: b
4545
query[key] = filters
4646
}
4747
}
48+
4849
await router.replace({
4950
query,
5051
})

0 commit comments

Comments
 (0)