Merge branch 'main' into feature/configure-gitpod

This commit is contained in:
Amruth Pillai
2022-12-16 13:44:46 +00:00
3 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
plugins { plugins {
id 'com.android.application' version '7.1.2' apply false id 'com.android.application' version '7.1.2' apply false
id 'com.android.library' version '7.1.2' apply false id 'com.android.library' version '7.1.2' apply false
id 'org.jetbrains.kotlin.android' version '1.7.21' apply false id 'org.jetbrains.kotlin.android' version '1.7.22' apply false
} }
task clean(type: Delete) { task clean(type: Delete) {
+1 -1
View File
@@ -23,7 +23,7 @@ COPY --from=dependencies /app/server/node_modules ./server/node_modules
RUN pnpm run build --filter server RUN pnpm run build --filter server
FROM mcr.microsoft.com/playwright:v1.28.0-focal as production FROM mcr.microsoft.com/playwright:v1.28.1-focal as production
WORKDIR /app WORKDIR /app
+1
View File
@@ -58,6 +58,7 @@ export class PrinterService implements OnModuleInit, OnModuleDestroy {
await page.goto(`${url}/${username}/${slug}/printer?secretKey=${secretKey}`); await page.goto(`${url}/${username}/${slug}/printer?secretKey=${secretKey}`);
await page.waitForSelector('html.wf-active'); await page.waitForSelector('html.wf-active');
await page.waitForLoadState("networkidle")
const pageFormat: PageConfig['format'] = await page.$$eval( const pageFormat: PageConfig['format'] = await page.$$eval(
'[data-page]', '[data-page]',