Switched from geckodriver to chrome

This commit is contained in:
2022-09-18 19:26:55 +02:00
parent 7cf7422b46
commit db161e50c8
13 changed files with 135 additions and 61 deletions

View File

@@ -9,12 +9,15 @@
{name: 'Language', value: article_data.language},
{name: 'Authors', value: article_data.authors},
{name: "Related", value: article_data.related},
{name: "Sent", value: article_data.sent},
]
</script>
<style>
a {
word-break: break-all;
td {
overflow-wrap: break-word;
word-wrap: break-word;
word-break: break-word;
}
</style>
<div class="card bg-neutral-300 shadow-xl overflow-x-auto">
@@ -31,9 +34,9 @@
{#each status_items as item}
<tr>
<td>{ item.name }</td>
{#if item.value != ""}
{#if (item.value != "" || status_items.valze == false) }
{#if item.name == "Url"}
<td class='bg-emerald-200'><a href="{ item.value }">{ item.value }</a></td>
<td class='bg-emerald-200'><a href="{ item.value }" target="_blank">{ item.value }</a></td>
{:else}
<td class='bg-emerald-200' style="white-space: normal; width:70%">{ item.value }</td>
{/if}