Skip to content

Commit

Permalink
updated member view + job pstings show time ago
Browse files Browse the repository at this point in the history
  • Loading branch information
rjsamra committed Dec 22, 2024
1 parent db8eafb commit 9a59adb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/components/admin/MemberCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const onRemove = () => {
</script>

<template>
<div class="col-span-full md:col-span-2 xl:col-span-4 bg-white rounded-2xl border border-zinc-200">
<div class="col-span-full md:col-span-4 xl:col-span-4 bg-white rounded-2xl border border-zinc-200">
<!-- Card content -->
<div class="flex justify-between items-center w-full p-2">
<div class="flex items-center space-x-2">
Expand Down
2 changes: 1 addition & 1 deletion app/pages/postings/[id].vue
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const apply = async () => {
<span>Back To Jobs</span>
</InputButton>
</div>
<div class="text-sm text-zinc-500 italic mb-2">Posted {{ formatDate(new Date(posting.updatedAt)) }}</div>
<div class="text-sm text-zinc-500 italic mb-2">Posted {{ timeAgo(new Date(posting.updatedAt)) }}</div>
<header class="mb-4">
<!-- Title -->
<h1 class="text-2xl md:text-3xl text-zinc-800 font-bold">
Expand Down

0 comments on commit 9a59adb

Please sign in to comment.