We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af9798a commit 7e75491Copy full SHA for 7e75491
loa-frontend/src/app/shared/debug/service/domain/debug-document.ts
@@ -10,8 +10,8 @@ export class DebugDocument {
10
public fileSize: number,
11
public downloadDate: string,
12
public downloaderVersion: number,
13
- public isInVault: boolean,
14
- public isInIndex: boolean
+ public inVault: boolean,
+ public inIndex: boolean
15
) {
16
}
17
loa-frontend/src/app/view/debug-document/debug-document.component.html
@@ -32,9 +32,9 @@
32
<dt>Compression:</dt>
33
<dd>{{document.compression}}</dd>
34
<dt>Is present in vault:</dt>
35
- <dd>{{document.isInVault}}</dd>
+ <dd>{{document.inVault}}</dd>
36
<dt>Is present in index:</dt>
37
- <dd>{{document.isInIndex}}</dd>
+ <dd>{{document.inIndex}}</dd>
38
</dl>
39
</div>
40
<div class="col-6">
0 commit comments