mirror of
https://github.com/davegallant/rfd-fyi.git
synced 2026-03-03 17:46:35 +00:00
Compare commits
1 Commits
6dd5f5a4b0
...
4bc2e71209
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4bc2e71209 |
11
flake.nix
11
flake.nix
@@ -14,12 +14,21 @@
|
|||||||
{
|
{
|
||||||
devShells.default = pkgs.mkShell {
|
devShells.default = pkgs.mkShell {
|
||||||
buildInputs = with pkgs; [
|
buildInputs = with pkgs; [
|
||||||
nodejs_25
|
# Node.js LTS with npm
|
||||||
|
nodejs_20
|
||||||
|
|
||||||
|
# Go for backend
|
||||||
go
|
go
|
||||||
|
|
||||||
|
# Build tools
|
||||||
pkg-config
|
pkg-config
|
||||||
|
|
||||||
|
# Development utilities
|
||||||
git
|
git
|
||||||
curl
|
curl
|
||||||
jq
|
jq
|
||||||
|
|
||||||
|
# Optional: for better development experience
|
||||||
gnumake
|
gnumake
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|||||||
306
package-lock.json
generated
306
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -1,4 +1,5 @@
|
|||||||
<script>
|
<script>
|
||||||
|
import InfoOverlay from "./components/InfoOverlay.vue";
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
import dayjs from "dayjs";
|
import dayjs from "dayjs";
|
||||||
import utc from "dayjs/plugin/utc";
|
import utc from "dayjs/plugin/utc";
|
||||||
|
|||||||
@@ -7,28 +7,26 @@
|
|||||||
</a>
|
</a>
|
||||||
<h3>Keyboard Shortcuts</h3>
|
<h3>Keyboard Shortcuts</h3>
|
||||||
<table class="shortcuts-table">
|
<table class="shortcuts-table">
|
||||||
<tbody>
|
<tr>
|
||||||
<tr>
|
<td><strong>r</strong></td>
|
||||||
<td><strong>r</strong></td>
|
<td>Refresh deals</td>
|
||||||
<td>Refresh deals</td>
|
</tr>
|
||||||
</tr>
|
<tr>
|
||||||
<tr>
|
<td><strong>s</strong></td>
|
||||||
<td><strong>s</strong></td>
|
<td>Toggle sort</td>
|
||||||
<td>Toggle sort</td>
|
</tr>
|
||||||
</tr>
|
<tr>
|
||||||
<tr>
|
<td><strong>v</strong></td>
|
||||||
<td><strong>v</strong></td>
|
<td>Toggle view mode</td>
|
||||||
<td>Toggle view mode</td>
|
</tr>
|
||||||
</tr>
|
<tr>
|
||||||
<tr>
|
<td><strong>t</strong></td>
|
||||||
<td><strong>t</strong></td>
|
<td>Toggle theme</td>
|
||||||
<td>Toggle theme</td>
|
</tr>
|
||||||
</tr>
|
<tr>
|
||||||
<tr>
|
<td><strong>/</strong></td>
|
||||||
<td><strong>/</strong></td>
|
<td>Filter deals</td>
|
||||||
<td>Filter deals</td>
|
</tr>
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
</table>
|
||||||
<button class="close-button" @click="closeOverlay">Close</button>
|
<button class="close-button" @click="closeOverlay">Close</button>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user