Skip to content

Commit 9bbc87b

Browse files
authored
Merge pull request #354 from red-kite-solutions/feature/improved_findings_search
Small fixes
2 parents 6020007 + 6762424 commit 9bbc87b

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

devspace.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -504,8 +504,8 @@ deployments:
504504
repo: https://charts.bitnami.com/bitnami
505505
version: "28.0.0"
506506
upgradeArgs:
507-
- --timeout
508-
- 1200s
507+
- --timeout
508+
- 1200s
509509
values:
510510
controller:
511511
nodeSelector: $(echo ${KAFKA_K8S_NODE_SELECTOR})
@@ -556,7 +556,7 @@ deployments:
556556
value: "no"
557557
provisioning:
558558
enabled: true
559-
parallel: 10
559+
parallel: 1
560560
nodeSelector: $(echo ${KAFKA_K8S_NODE_SELECTOR})
561561
auth:
562562
tls:

packages/frontend/stalker-app/src/app/modules/ip-ranges/view-ip-range/view-ip-range.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ <h3 class="metric-title" i18n="Short mask|Short mask of a subnet">Short mask</h3
3535
<div class="metric-info">{{ ipRangeExt.shortMask }}</div>
3636
</div>
3737
<div class="tw-col-span-1">
38-
<h3 class="metric-title" i18n="Long mask|Long mask of a subnet">Long massk</h3>
38+
<h3 class="metric-title" i18n="Long mask|Long mask of a subnet">Long mask</h3>
3939
<div class="metric-info">{{ ipRangeExt.longMask }}</div>
4040
</div>
4141
<div class="tw-col-span-1">

packages/frontend/stalker-app/src/app/modules/ip-ranges/view-ip-range/view-ip-range.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ export class ViewIpRangeComponent implements OnDestroy {
104104
public manageTags: string = $localize`:Manage Tags|Manage Tags:Manage Tags`;
105105
public filterTags: string = $localize`:Filter Tags|Filter Tags:Filter Tags`;
106106
public emptyTags: string = $localize`:No Tags|List of tags is empty:No Tags Available`;
107-
public manageIpRangeText: string = $localize`:Manage ip range|Manage the ip range element:Manage ip range`;
107+
public manageIpRangeText: string = $localize`:Manage IP range|Manage the IP range element:Manage IP range`;
108108

109109
// Drawer
110110
public currentDetailsId: string | null = null;

packages/frontend/stalker-app/src/app/shared/components/sidebar/sidebar.component.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,6 @@ export class SidebarComponent {
6262
{
6363
name: $localize`:Resources|Title for the Resources section of the sidenav:Resources`,
6464
items: [
65-
{
66-
icon: 'radar',
67-
routerLink: '/ip-ranges',
68-
name: $localize`:IP Ranges|Sidenav ip ranges button:IP Ranges`,
69-
},
7065
{
7166
icon: 'language',
7267
routerLink: '/domains',
@@ -87,6 +82,11 @@ export class SidebarComponent {
8782
routerLink: '/websites',
8883
name: $localize`:Websites|Sidenav website button:Websites`,
8984
},
85+
{
86+
icon: 'radar',
87+
routerLink: '/ip-ranges',
88+
name: $localize`:IP Ranges|Sidenav ip ranges button:IP Ranges`,
89+
},
9090
],
9191
},
9292
{

0 commit comments

Comments
 (0)