From eec418cdfe12302d7e6ecdbf418628827e6a4251 Mon Sep 17 00:00:00 2001 From: MatthijsSmets Date: Fri, 24 Nov 2023 14:28:31 +0100 Subject: [PATCH] fix: redundant parameter in url --- .github/workflows/testing.js.yml | 2 ++ src/app/test/test.component.ts | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/testing.js.yml b/.github/workflows/testing.js.yml index 5e6a1bc9..71932f7d 100644 --- a/.github/workflows/testing.js.yml +++ b/.github/workflows/testing.js.yml @@ -98,6 +98,8 @@ jobs: run: echo "maven.skip.javadoc=true" >> frank-runner/specials/ibis-ladybug/build.properties - name: Set property to skip checking licenses run: echo "maven.skip.copyright=true" >> frank-runner/specials/ibis-ladybug/build.properties + - name: Set property to skip replace check + run: echo "skip.replace.check=true" >> frank-runner/specials/ibis-ladybug/build.properties - name: Set port where ibis-ladybug-test-webapp is served run: echo "tomcat.connector.port=8090" > frank-runner/build.properties diff --git a/src/app/test/test.component.ts b/src/app/test/test.component.ts index 6e0d60a2..5d148c1d 100644 --- a/src/app/test/test.component.ts +++ b/src/app/test/test.component.ts @@ -23,7 +23,7 @@ export class TestComponent implements OnInit { generatorStatus: string = 'Disabled'; currentFilter: string = ''; currentView: any = { - metadataNames: ['storageId', 'name', 'variables', 'path'], + metadataNames: ['storageId', 'name', 'path'], storageName: 'Test', }; // Hard-coded for now targetStorage: string = 'Debug';