made tasks link clickable.
This commit is contained in:
parent
1d73a2aa99
commit
8574eec09a
1 changed files with 9 additions and 1 deletions
|
|
@ -40,7 +40,11 @@
|
||||||
<tr v-for="item, key in tasks" :key="key">
|
<tr v-for="item, key in tasks" :key="key">
|
||||||
<td class="is-text-overflow has-text-centered" v-if="item.name">{{ item.name }}</td>
|
<td class="is-text-overflow has-text-centered" v-if="item.name">{{ item.name }}</td>
|
||||||
<td class="has-text-centered" v-else>Not set</td>
|
<td class="has-text-centered" v-else>Not set</td>
|
||||||
<td class="is-text-overflow">{{ item.url }}</td>
|
<td class="is-text-overflow">
|
||||||
|
<a :href="item.url" target="_blank">
|
||||||
|
{{ item.url }}
|
||||||
|
</a>
|
||||||
|
</td>
|
||||||
<td class="has-text-centered" v-if="item.timer">{{ item.timer }}</td>
|
<td class="has-text-centered" v-if="item.timer">{{ item.timer }}</td>
|
||||||
<td class="has-text-centered" v-else>once an hour</td>
|
<td class="has-text-centered" v-else>once an hour</td>
|
||||||
<td class="has-text-centered">
|
<td class="has-text-centered">
|
||||||
|
|
@ -93,4 +97,8 @@ defineProps({
|
||||||
table.is-fixed {
|
table.is-fixed {
|
||||||
table-layout: fixed;
|
table-layout: fixed;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div.table-container {
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue