Skip to content

Commit

Permalink
Merge pull request #61 from internetstandards/42
Browse files Browse the repository at this point in the history
fix #480
  • Loading branch information
stitch authored Nov 6, 2023
2 parents 836909c + 1fcdfe9 commit 14ad182
Show file tree
Hide file tree
Showing 10 changed files with 8 additions and 40 deletions.
4 changes: 2 additions & 2 deletions .env.development
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
NODE_ENV=development
# VUE_APP_DJANGO_PATH=http://localhost:8000
VUE_APP_DJANGO_PATH=https://dashboard.internet.nl
VUE_APP_DJANGO_PATH=http://localhost:8000
# VUE_APP_DJANGO_PATH=https://dashboard.internet.nl
3 changes: 3 additions & 0 deletions .env.development.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
NODE_ENV=development
VUE_APP_DJANGO_PATH=http://localhost:8000
# VUE_APP_DJANGO_PATH=https://dashboard.internet.nl
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

This file was deleted.

This file was deleted.

11 changes: 0 additions & 11 deletions src/components/domains/SpreadsheetUpload.vue
Original file line number Diff line number Diff line change
Expand Up @@ -76,17 +76,6 @@
<a href="/static_frontend/sample_spreadsheets/microsoft_office_spreadsheet_with_example_data.xlsx">Example.xlsx</a>
</td>
</tr>
<tr>
<td>
{{ $t("upload.comma_separated") }}
</td>
<td>
<a href="/static_frontend/sample_spreadsheets/text_spreadsheet_empty.csv">Empty.csv</a>
</td>
<td>
<a href="/static_frontend/sample_spreadsheets/text_spreadsheet_with_example_data.csv">Example.csv</a>
</td>
</tr>
</table>
</content-block>
<content-block>
Expand Down
6 changes: 3 additions & 3 deletions src/components/reports/ReportTableVirtualListRecord.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<td>
-
</td>
<td><div style="width: 200px; overflow-x: scroll">{{ source.url }}</div></td>
<td><div style="width: 200px; overflow-x: auto; white-space: nowrap;">{{ source.url }}</div></td>
<td colspan="200">
<small>{{ $t('not_eligeble_for_scanning') }}</small>
</td>
Expand All @@ -22,10 +22,10 @@
<img :src='`/static_frontend/images/report_comparison_${score_comparison(source)}.png`'
v-if="score_comparison(source)" />
</span>
<span class="visuallyhidden"> {{ $t('link_to_report', {'url': source}) }}</span>
<span class="visuallyhidden"> {{ $t('link_to_report', {'url': source.url}) }}</span>
</a>
</td>
<td class="px-225"><div style="width: 200px; overflow-x: scroll">{{ source.url }}</div></td>
<td class="px-225"><div style="width: 200px; overflow-x: auto; white-space: nowrap;">{{ source.url }}</div></td>
<template v-if="['web', 'mail'].includes(selected_category)">
<!-- do this only onhover, not prepared: v-b-tooltip.hover :title="make_tooltip(source, category_name)" -->
<td class="testresultcell px-100"
Expand Down

0 comments on commit 14ad182

Please sign in to comment.