Skip to content

Commit

Permalink
Update dashboard status filter tab icons
Browse files Browse the repository at this point in the history
Update status filter tab icons for better representation and
consistency.
  • Loading branch information
djjuhasz committed Nov 14, 2024
1 parent 72ffd6d commit db2346b
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions dashboard/src/pages/packages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,11 @@ import IconCaretRightFill from "~icons/bi/caret-right-fill";
import IconCaretLeftFill from "~icons/bi/caret-left-fill";
// Tab icons.
import RawIconCheckCircleLine from "~icons/clarity/check-circle-line?raw&font-size=20px";
import RawIconTimesCircleLine from "~icons/clarity/times-circle-line?raw&font-size=20px";
import RawIconPlayLine from "~icons/clarity/play-line?raw&font-size=20px";
import RawIconBarsLine from "~icons/clarity/bars-line?raw&font-size=20px";
import RawIconBlocksGroupLine from "~icons/clarity/blocks-group-line?raw&font-size=20px";
import RawIconSyncLine from "~icons/clarity/sync-line?raw&font-size=20px";
import RawIconRemoveLine from "~icons/clarity/remove-line?raw&font-size=20px";
import RawIconClockLine from "~icons/clarity/clock-line?raw&font-size=20px";
import RawIconSuccessLine from "~icons/clarity/success-standard-line?raw&font-size=20px";
const authStore = useAuthStore();
const layoutStore = useLayoutStore();
Expand All @@ -56,14 +57,15 @@ onMounted(() => {
const tabs = [
{
icon: RawIconBlocksGroupLine,
text: "All",
route: router.resolve({
name: "/packages/",
}),
show: true,
},
{
icon: RawIconCheckCircleLine,
icon: RawIconSuccessLine,
text: "Done",
route: router.resolve({
name: "/packages/",
Expand All @@ -72,7 +74,7 @@ const tabs = [
show: true,
},
{
icon: RawIconPlayLine,
icon: RawIconRemoveLine,
text: "Error",
route: router.resolve({
name: "/packages/",
Expand All @@ -81,7 +83,7 @@ const tabs = [
show: true,
},
{
icon: RawIconTimesCircleLine,
icon: RawIconSyncLine,
text: "In progress",
route: router.resolve({
name: "/packages/",
Expand All @@ -90,7 +92,7 @@ const tabs = [
show: true,
},
{
icon: RawIconBarsLine,
icon: RawIconClockLine,
text: "Queued",
route: router.resolve({
name: "/packages/",
Expand Down

0 comments on commit db2346b

Please sign in to comment.