mirror of
https://github.com/davegallant/rfd-fyi.git
synced 2026-03-03 17:46:35 +00:00
Compare commits
3 Commits
153c7b0b4e
...
18adc25eef
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
18adc25eef | ||
| cb6ff92283 | |||
| 81a5cde565 |
254
package-lock.json
generated
254
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -24,7 +24,7 @@
|
|||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/core": "^7.22.10",
|
"@babel/core": "^7.22.10",
|
||||||
"@babel/eslint-parser": "^7.22.10",
|
"@babel/eslint-parser": "^7.22.10",
|
||||||
"@vitejs/plugin-vue": "^5.2.3",
|
"@vitejs/plugin-vue": "^6.0.0",
|
||||||
"@vue/cli-plugin-babel": "~5.0.0",
|
"@vue/cli-plugin-babel": "~5.0.0",
|
||||||
"@vue/cli-plugin-eslint": "~5.0.0",
|
"@vue/cli-plugin-eslint": "~5.0.0",
|
||||||
"@vue/cli-service": "^5.0.9",
|
"@vue/cli-service": "^5.0.9",
|
||||||
|
|||||||
11
src/App.vue
11
src/App.vue
@@ -237,6 +237,11 @@ export default {
|
|||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
this.$refs.filterInput.focus();
|
this.$refs.filterInput.focus();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (event.key === "r" && !isInput) {
|
||||||
|
event.preventDefault();
|
||||||
|
this.fetchDeals();
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
parseFiltersFromUrl() {
|
parseFiltersFromUrl() {
|
||||||
@@ -463,7 +468,7 @@ export default {
|
|||||||
:href="topic.Offer.url"
|
:href="topic.Offer.url"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
class="card-link"
|
class="card-link"
|
||||||
title="Open deal"
|
title="Open direct link to deal"
|
||||||
>
|
>
|
||||||
<span class="material-symbols-outlined">open_in_new</span>
|
<span class="material-symbols-outlined">open_in_new</span>
|
||||||
</a>
|
</a>
|
||||||
@@ -501,12 +506,12 @@ export default {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="card-timestamp">First post: {{ formatDate(topic.post_time) }}</div>
|
||||||
<div class="card-timestamp">Last post: {{ formatDate(topic.last_post_time) }}</div>
|
<div class="card-timestamp">Last post: {{ formatDate(topic.last_post_time) }}</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="row-stats" v-if="viewMode === 'list'">
|
<div class="row-stats" v-if="viewMode === 'list'">
|
||||||
<span class="stat-compact">{{ topic.total_views }} views</span>
|
<span class="stat-compact">{{ formatDate(topic.post_time) }} - {{ formatDate(topic.last_post_time) }}</span>
|
||||||
<span class="stat-compact">{{ topic.total_replies }} replies</span>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user