Skip to content

Commit

Permalink
minor changes and fixes (#117)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kubaryt authored Oct 6, 2024
1 parent 3301a3e commit 2cc0ae9
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 24 deletions.
1 change: 1 addition & 0 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
"@iconify-json/logos": "^1.2.2",
"@iconify-json/lucide": "^1.2.7",
"@iconify-json/material-symbols": "^1.2.2",
"@iconify-json/material-symbols-light": "^1.2.2",
"@nuxt/eslint": "^0.4.0",
"@types/aos": "^3.0.7",
"@unocss/eslint-plugin": "^0.61.9",
Expand Down
8 changes: 4 additions & 4 deletions frontend/pages/panel/reports.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div mx-35 mt-20>
<h1 text-10>
<h1 text-2xl>
Reports
</h1>
<span>Your generated reports</span>
Expand All @@ -12,7 +12,7 @@
<TableHead>Satelite</TableHead>
<TableHead>Date</TableHead>
<TableHead>Status</TableHead>
<TableHead>Link</TableHead>
<TableHead><!-- extends table header to full width --></TableHead>
<TableHead><!-- extends table header to full width --></TableHead>
</TableRow>
</TableHeader>
Expand All @@ -21,7 +21,7 @@
<TableCell>{{ report.satelite }}</TableCell>
<TableCell>{{ report.date }}</TableCell>
<TableCell>{{ report.status }}</TableCell>
<TableCell><NuxtLink to="{{ report.link }}">Link</NuxtLink></TableCell>
<TableCell><NuxtLink :to="`/panel/report/${report.id}`"><img class="i-material-symbols-light:open-in-new" text-2xl></NuxtLink></TableCell>
<TableCell>
<button class="text-red-500 hover:text-red-700" @click="deleteReport(index)">
DELETE
Expand All @@ -40,7 +40,7 @@ const reports = ref([
satelite: "Landsat 9",
date: "11.9.2024",
status: "Finished",
link: "/panel/report/id"
id: "1"
}
]);
Expand Down
50 changes: 30 additions & 20 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 2cc0ae9

Please sign in to comment.