Skip to content

Commit 7e75491

Browse files
committed
#337 - Fixed that occasionally isInVault and isInIndex are not being shown correctly on the debug page.
1 parent af9798a commit 7e75491

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

loa-frontend/src/app/shared/debug/service/domain/debug-document.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ export class DebugDocument {
1010
public fileSize: number,
1111
public downloadDate: string,
1212
public downloaderVersion: number,
13-
public isInVault: boolean,
14-
public isInIndex: boolean
13+
public inVault: boolean,
14+
public inIndex: boolean
1515
) {
1616
}
1717
}

loa-frontend/src/app/view/debug-document/debug-document.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@
3232
<dt>Compression:</dt>
3333
<dd>{{document.compression}}</dd>
3434
<dt>Is present in vault:</dt>
35-
<dd>{{document.isInVault}}</dd>
35+
<dd>{{document.inVault}}</dd>
3636
<dt>Is present in index:</dt>
37-
<dd>{{document.isInIndex}}</dd>
37+
<dd>{{document.inIndex}}</dd>
3838
</dl>
3939
</div>
4040
<div class="col-6">

0 commit comments

Comments
 (0)