mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-23 00:48:25 +00:00
cleanup
This commit is contained in:
parent
fbb7f07cc6
commit
b101951152
4 changed files with 2 additions and 6 deletions
|
|
@ -60,7 +60,6 @@ export const GlobalSettings = ({
|
|||
boxShadow: showPicker && '0px 0px 0px 1px #C6D4F9',
|
||||
};
|
||||
|
||||
console.log('----arpit exporting:: ', { app });
|
||||
return (
|
||||
<>
|
||||
<Confirm
|
||||
|
|
|
|||
|
|
@ -39,7 +39,6 @@ export const EventManager = ({
|
|||
callerQueryId,
|
||||
customEventRefs = {},
|
||||
}) => {
|
||||
console.log('---arpit:: customRef', { customEventRefs });
|
||||
const dataQueries = useDataQueriesStore(({ dataQueries = [] }) => {
|
||||
if (callerQueryId) {
|
||||
//filter the same query getting attached to itself
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ import { Page } from 'src/entities/page.entity';
|
|||
import { Layout } from 'src/entities/layout.entity';
|
||||
import { EventHandler, Target } from 'src/entities/event_handler.entity';
|
||||
|
||||
export class MigrateAppsDefinitionSchemaTransition1695902112489 implements MigrationInterface {
|
||||
export class MigrateAppsDefinitionSchemaTransition1695914619976 implements MigrationInterface {
|
||||
public async up(queryRunner: QueryRunner): Promise<void> {
|
||||
let progress = 0;
|
||||
|
||||
|
|
|
|||
|
|
@ -167,8 +167,6 @@ export class AppImportExportService {
|
|||
.orderBy('event_handlers.created_at', 'ASC')
|
||||
.getMany();
|
||||
|
||||
// console.log('-----arpit import/export::', { components });
|
||||
|
||||
appToExport['components'] = components;
|
||||
appToExport['pages'] = pages;
|
||||
appToExport['events'] = events;
|
||||
|
|
@ -353,7 +351,7 @@ export class AppImportExportService {
|
|||
importingComponents,
|
||||
importingEvents
|
||||
);
|
||||
console.log('-----arpit extract import data:: ', { appResourceMappings });
|
||||
|
||||
if (!isNormalizedAppDefinitionSchema) {
|
||||
for (const importingAppVersion of importingAppVersions) {
|
||||
const updatedDefinition = this.replaceDataQueryIdWithinDefinitions(
|
||||
|
|
|
|||
Loading…
Reference in a new issue