Skip to content

Commit 37d42af

Browse files
committed
chore: remove console.logs
1 parent 96dcb06 commit 37d42af

5 files changed

Lines changed: 0 additions & 10 deletions

File tree

frontend/src/modules/admin/modules/insights-projects/components/lf-insights-project-add.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,6 @@ const onSubmit = () => {
286286
const request = buildRequest({
287287
...form,
288288
});
289-
console.log(request);
290289
if (isEditForm.value) {
291290
updateMutation.mutate({
292291
id: props.insightsProjectId as string,

frontend/src/modules/admin/modules/insights-projects/pages/insights-projects.page.vue

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,6 @@ const projects = computed((): InsightsProjectModel[] => {
197197
});
198198
199199
watch(() => route.query, (query) => {
200-
console.log('query', query);
201200
if (query?.search !== search.value) {
202201
search.value = query.search as string || '';
203202
}
@@ -207,7 +206,6 @@ watch(() => route.query, (query) => {
207206
208207
watch(search, (value) => {
209208
if (value !== route.query?.search) {
210-
console.log('search', value);
211209
router.replace({
212210
query: {
213211
...route.query,

frontend/src/modules/admin/modules/insights-projects/services/insights-projects.service.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ export class InsightsProjectsService {
3737
}
3838

3939
update(id: string, project: InsightsProjectRequest) {
40-
console.log(project);
4140
return authAxios
4241
.post<InsightsProjectModel>(
4342
`/collections/insights-projects/${id}`,

frontend/src/modules/organization/components/shared/organization-select.vue

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,6 @@ const fetchOrganizations = async ({ query } : {
9797
const createOrganization = (value: string) => {
9898
isCreatingOrganization.value = true;
9999
100-
console.log('value', value);
101-
102100
return OrganizationService.create({
103101
name: value,
104102
attributes: {

frontend/src/shared/form/autocomplete-one-input.vue

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -188,19 +188,15 @@ export default {
188188
189189
methods: {
190190
async onChange(value) {
191-
console.log('onChange called with:', { value, currentQuery: this.currentQuery, createIfNotFound: this.createIfNotFound });
192-
193191
if (
194192
this.currentQuery !== ''
195193
&& this.createIfNotFound
196194
&& !value
197195
) {
198-
console.log('Calling createFn with currentQuery:', this.currentQuery);
199196
const newItem = await this.createFn(this.currentQuery);
200197
this.localOptions.push(newItem);
201198
this.$emit('update:modelValue', newItem);
202199
} else {
203-
console.log('Not calling createFn, emitting value:', value);
204200
this.$emit('update:modelValue', {
205201
...value,
206202
...this.storeKey && {

0 commit comments

Comments
 (0)