feat: match output preview width

This commit is contained in:
Rohit
2025-03-15 04:01:03 +05:30
parent e344edadb0
commit 0ca557d31c
2 changed files with 2 additions and 2 deletions

View File

@@ -47,7 +47,7 @@ interface ExecuteRunData {
browserId: string;
}
const pgBoss = new PgBoss({connectionString: pgBossConnectionString, schema: 'public'});
const pgBoss = new PgBoss({connectionString: pgBossConnectionString });
/**
* Extract data safely from a job (single job or job array)

View File

@@ -165,7 +165,7 @@ export const InterpretationLog: React.FC<InterpretationLogProps> = ({ isOpen, se
color: `${darkMode ? 'white' : 'black'}`,
padding: '10px',
height: window.innerHeight * 0.7,
width: window.innerWidth * 0.7,
width: window.innerWidth * 0.716,
display: 'flex',
borderRadius: '10px 10px 0 0',
},