Skip to content

Commit 7952b1d

Browse files
add link for tom app
add link for tom app
1 parent a66631a commit 7952b1d

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

apps/tom/src/components/AdvertisementCard.vue

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,13 @@
22
<Card>
33
<template #content>
44
<div class="grid">
5-
<div class="md:col-4 p-2 bg-bluegray-50 flex justify-content-center">
6-
<img class="max-w-full" :src="toAdvertisementImage(ad)" :alt="toAdvertisementName(ad)">
5+
<div class="md:col-4 p-2 bg-bluegray-50 flex justify-content-center">
6+
<img class="max-w-full" :src="toAdvertisementImage(ad)" :alt="toAdvertisementName(ad)">
7+
</div>
8+
<div class="col-8">
9+
<h2><a :href="ad" target="_blank">{{ toAdvertisementName(ad) }} *</a></h2>
10+
</div>
711
</div>
8-
<div class="md:col-8">
9-
<h3>{{ toAdvertisementName(ad) }}</h3>
10-
<p class="text-black-alpha-70 break-all">{{ ad }}</p>
11-
</div>
12-
</div>
1312
</template>
1413
<template #footer>
1514
<Button @click="emit('adClick', ad)" class="w-full justify-content-center">Find Provider</Button>

apps/tom/src/views/CreateDemand.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ async function createDemand(demandContainerUris: string[], payload: string) {
292292
<SmeCard>
293293
<SmeCardHeadline>Service Type</SmeCardHeadline>
294294
<ul class="list-none gap-5 p-0 flex flex-column md:flex-row">
295-
<li v-for="ad of listedAdvertisements" :key="ad">
295+
<li v-for="ad of listedAdvertisements" :key="ad" class="md:col-6">
296296
<AdvertisementCard @adClick="adClick" :ad="ad"/>
297297
</li>
298298
</ul>

0 commit comments

Comments
 (0)