Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit9e2dca8

Browse files
committed
Bucket view: Collapse PBM+ETP into single column.
1 parentc4ffcd0 commit9e2dca8

File tree

2 files changed

+20
-12
lines changed

2 files changed

+20
-12
lines changed

‎server/frontend/src/components/Buckets/ReportPreviewRow.vue‎

Lines changed: 19 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -47,21 +47,24 @@
4747
({{ report.app_channel }})
4848
</td>
4949
<td>
50+
PBM:
5051
{{
5152
report.details.boolean
52-
.broken_site_report_tab_info_antitracking_has_tracking_content_blocked
53-
}}
54-
</td>
55-
<td>
53+
.broken_site_report_tab_info_antitracking_is_private_browsing
54+
| humanBool
55+
}}<br />
56+
57+
Blocklist:
5658
{{
5759
report.details.string
58-
.broken_site_report_tab_info_antitracking_block_list
59-
}}
60-
</td>
61-
<td>
60+
.broken_site_report_tab_info_antitracking_block_list || "n/a"
61+
}}<br />
62+
63+
Any content blocked:
6264
{{
6365
report.details.boolean
64-
.broken_site_report_tab_info_antitracking_is_private_browsing
66+
.broken_site_report_tab_info_antitracking_has_tracking_content_blocked
67+
| humanBool
6568
}}
6669
</td>
6770
</tr>
@@ -79,6 +82,13 @@ export default {
7982
},
8083
filters: {
8184
shorterDate: shorterDate,
85+
humanBool: (value)=> {
86+
if (value===undefined|| value===null) {
87+
return"n/a";
88+
}
89+
90+
return value?"yes":"no";
91+
},
8292
},
8393
methods: {
8494
staticLogo(name) {

‎server/frontend/src/components/Buckets/View.vue‎

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,9 +104,7 @@
104104
<th>URL</th>
105105
<th>User Comments</th>
106106
<th>Product</th>
107-
<th>ETP content blocked?</th>
108-
<th>ETP blocklist</th>
109-
<th>Is PBM?</th>
107+
<th>ETP&amp; PBM</th>
110108
</tr>
111109
</thead>
112110
<tbody>

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp