Skip to content

Commit

Permalink
fix: redundant parameter in url
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthijsSmets authored and philipsens committed Dec 21, 2023
1 parent 0718d82 commit eec418c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/testing.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion src/app/test/test.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down

0 comments on commit eec418c

Please sign in to comment.