|
22 | 22 | {{ t('securitychecklist.alert-checked') }} {{ countItems({ action: 'checked', category: |
23 | 23 | 'all' }) }} {{ t('securitychecklist.Items') }}, |
24 | 24 | {{ countItems({ action: 'ignored', category: 'all' }) }} {{ t('securitychecklist.Items') |
25 | | - }}{{ t('securitychecklist.alert-ignored') }},{{ countItems({ action: |
| 25 | + }}{{ t('securitychecklist.alert-ignored') }}, {{ countItems({ action: |
26 | 26 | 'total', category: 'all' }) - countItems({ action: 'checked', category: 'all' }) - |
27 | 27 | countItems({ action: 'ignored', category: 'all' }) }} {{ |
28 | 28 | t('securitychecklist.alert-unchecked') }} |
|
35 | 35 | <span class="fs-6 flex-shrink-1">{{ fullList[item].title }}</span> |
36 | 36 | <span class="progress-stacked flex-grow-1"> |
37 | 37 | <div class="progress" role="progressbar" aria-label="Segment One" |
38 | | - aria-valuenow="30" aria-valuemin="0" aria-valuemax="100" |
39 | 38 | :style="'width: '+ countItems({ action: 'checked', category: item }) / countItems({ action: 'total', category: item }) * 100 + '%'"> |
40 | 39 | <div class="progress-bar bg-success"> {{ t('securitychecklist.Checked') }} |
41 | 40 | </div> |
42 | 41 | </div> |
43 | 42 |
|
44 | 43 | <div class="progress" role="progressbar" aria-label="Segment two" |
45 | | - aria-valuenow="30" aria-valuemin="0" aria-valuemax="100" |
46 | 44 | :style="'width: '+ countItems({ action: 'ignored', category: item }) / countItems({ action: 'total', category: item }) * 100 + '%'"> |
47 | 45 | <div class="progress-bar bg-info"> {{ t('securitychecklist.Ignored') }} |
48 | 46 | </div> |
|
154 | 152 | <table class="table table-hover" :class="{ 'table-dark': isDarkMode }"> |
155 | 153 | <thead> |
156 | 154 | <tr> |
157 | | - <th scope="col">{{ t('securitychecklist.Items') }}</th> |
| 155 | + <th scope="col">{{ t('securitychecklist.Item') }}</th> |
158 | 156 | <th scope="col">{{ t('securitychecklist.Priority') }}</th> |
159 | 157 | <th scope="col">{{ t('securitychecklist.Ignore') }}</th> |
160 | 158 | </tr> |
|
0 commit comments