mirror of
https://github.com/davegallant/rfd-fyi.git
synced 2025-08-06 07:13:39 +00:00
Add link icon for direct link to deal
This commit is contained in:
@@ -25,4 +25,5 @@ type Votes struct {
|
|||||||
|
|
||||||
type Offer struct {
|
type Offer struct {
|
||||||
DealerName string `json:"dealer_name"`
|
DealerName string `json:"dealer_name"`
|
||||||
|
Url string `json:"url"`
|
||||||
} // @name Offer
|
} // @name Offer
|
||||||
|
@@ -5,6 +5,10 @@
|
|||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||||
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
|
||||||
<link rel="icon" href="<%= BASE_URL %>favicon.png" />
|
<link rel="icon" href="<%= BASE_URL %>favicon.png" />
|
||||||
|
<link
|
||||||
|
rel="stylesheet"
|
||||||
|
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200"
|
||||||
|
/>
|
||||||
<title>rfd.fyi - An overlay of hot deals</title>
|
<title>rfd.fyi - An overlay of hot deals</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
11
src/App.vue
11
src/App.vue
@@ -177,10 +177,19 @@ export default {
|
|||||||
target="_blank"
|
target="_blank"
|
||||||
v-html="
|
v-html="
|
||||||
highlightMatches(
|
highlightMatches(
|
||||||
topic.title + ' [' + topic.Offer.dealer_name + ']'
|
topic.title + ' [' + topic.Offer.dealer_name + '] '
|
||||||
)
|
)
|
||||||
"
|
"
|
||||||
></a>
|
></a>
|
||||||
|
<a
|
||||||
|
:href="`${topic.Offer.url}`"
|
||||||
|
target="_blank"
|
||||||
|
v-if="topic.Offer.url"
|
||||||
|
><span class="material-symbols-outlined"> link </span></a
|
||||||
|
>
|
||||||
|
<span v-if="!topic.Offer.url" class="material-symbols-outlined">
|
||||||
|
link_off
|
||||||
|
</span>
|
||||||
</td>
|
</td>
|
||||||
<td v-if="topic.score > 0" scope="col" class="green-score">
|
<td v-if="topic.score > 0" scope="col" class="green-score">
|
||||||
+{{ topic.score }}
|
+{{ topic.score }}
|
||||||
|
@@ -220,3 +220,7 @@ footer {
|
|||||||
background-size: contain;
|
background-size: contain;
|
||||||
background-position-y: bottom;
|
background-position-y: bottom;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.material-symbols-outlined {
|
||||||
|
font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 48;
|
||||||
|
}
|
||||||
|
Reference in New Issue
Block a user