Skip to content

Commit 3ecb4ec

Browse files
committed
fix: fix build errors
1 parent e4e1363 commit 3ecb4ec

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

projects/lib/portal-options/services/router-config.service.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ describe('CustomRoutingConfigServiceImpl', () => {
138138
it('should redirect to error/404 when envConfig.baseDomain is undefined', async () => {
139139
service['envConfig'] = {
140140
...mockClientEnvironment,
141-
baseDomain: undefined,
141+
baseDomain: undefined as any,
142142
};
143143

144144
Object.defineProperty(window, 'location', {

projects/wc/src/app/components/generic-ui/list-view/delete-resource-confirmation-modal/delete-resource-modal.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
This action <b>cannot</b> be undone.
1414
</ui5-text>
1515
<p>
16-
Please type <b>{{ innerResource()?.metadata?.name.toLowerCase() }}</b> to confirm:
16+
Please type <b>{{ innerResource()?.metadata?.name?.toLowerCase() }}</b> to confirm:
1717
</p>
1818
<ui5-input
1919
class="input"

0 commit comments

Comments
 (0)