Skip to content

Commit 913ff95

Browse files
committed
fix redirect stale request not being removed
1 parent 987f632 commit 913ff95

23 files changed

Lines changed: 166 additions & 164 deletions

File tree

dist/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
<body class="mat-typography">
1010
<df-root></df-root>
1111
<script type="text/javascript" src="https://assets.calendly.com/assets/external/widget.js"></script>
12-
<script src="runtime.7a3bff299313cac5.js" type="module"></script><script src="polyfills.def0190516b19e6b.js" type="module"></script><script src="main.57238ad7e4fa2211.js" type="module"></script></body>
12+
<script src="runtime.7a3bff299313cac5.js" type="module"></script><script src="polyfills.def0190516b19e6b.js" type="module"></script><script src="main.fdc080c24d230ec0.js" type="module"></script></body>
1313
</html>

dist/main.57238ad7e4fa2211.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

dist/main.fdc080c24d230ec0.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/app/adf-api-docs/df-api-docs/df-api-docs.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
'status-loading': healthStatus === 'loading',
5555
'status-healthy': healthStatus === 'healthy',
5656
'status-unhealthy': healthStatus === 'unhealthy',
57-
'status-warning': healthStatus === 'warning',
57+
'status-warning': healthStatus === 'warning'
5858
}">
5959
<div *ngIf="healthStatus === 'loading'">
6060
<p>{{ 'apiHealthBanner.loading' | transloco }}</p>

src/app/adf-config/df-cors/df-cors-config-details.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ <h4>{{ 'cors.pageSubtitle' | transloco }}</h4>
6161
class="dynamic-width"
6262
formControlName="methods"
6363
[schema]="{
64-
label: 'cors.formControls.methods' | transloco,
64+
label: 'cors.formControls.methods' | transloco
6565
}"
6666
type="verb_multiple"></df-verb-picker>
6767
<mat-slide-toggle

src/app/adf-home/df-welcome-page/df-welcome-page.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<ng-container
22
*ngIf="{
3-
isFirstTimeUser: isFirstTimeUser$ | async,
3+
isFirstTimeUser: isFirstTimeUser$ | async
44
} as data">
55
<div [class]="(isDarkMode | async) ? 'dark-theme' : ''">
66
<section

src/app/adf-limits/df-limit-details/df-limit-details.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
formControlName="verb"
2222
[schema]="{
2323
label: 'limits.verb' | transloco,
24-
description: 'limits.verbTooltip' | transloco,
24+
description: 'limits.verbTooltip' | transloco
2525
}"></df-verb-picker>
2626
<mat-form-field
2727
appearance="outline"

src/app/adf-roles/df-roles-access/df-roles-access.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@
290290
'access',
291291
'requester',
292292
'advancedFilters',
293-
'actions',
293+
'actions'
294294
]"></tr>
295295
<tr
296296
mat-row
@@ -302,7 +302,7 @@
302302
'access',
303303
'requester',
304304
'advancedFilters',
305-
'actions',
305+
'actions'
306306
]
307307
"></tr>
308308
<tr class="mat-row" *matNoDataRow>

src/app/adf-roles/df-roles-access/df-roles-access.component.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -258,9 +258,8 @@ export class DfRolesAccessComponent implements OnInit {
258258
}
259259

260260
getExtendOperator(index: number) {
261-
const serviceId = this.serviceAccess
262-
.at(index)
263-
.get('extend-operator')?.value;
261+
const serviceId = this.serviceAccess.at(index).get('extend-operator')
262+
?.value;
264263
const operators = this.componentOptions.find(
265264
option => option.serviceId === serviceId
266265
)?.components;

src/app/adf-scheduler/df-scheduler-details/df-scheduler-details.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ <h4>{{ 'scheduler.taskOverviewSubtitle' | transloco }}</h4>
9393
class="dynamic-width"
9494
formControlName="method"
9595
[schema]="{
96-
label: 'scheduler.form.label.method' | transloco,
96+
label: 'scheduler.form.label.method' | transloco
9797
}"></df-verb-picker>
9898
<div class="full-width action-bar">
9999
<button

0 commit comments

Comments
 (0)