Skip to content

Commit

Permalink
wip it
Browse files Browse the repository at this point in the history
  • Loading branch information
SethSharp committed Aug 16, 2024
1 parent 5b72064 commit 9bd95a6
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 12 deletions.
8 changes: 4 additions & 4 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"@alpinejs/intersect": "^3.13.7",
"@headlessui/vue": "^1.7.16",
"@heroicons/vue": "^2.0.18",
"@sethsharp/ui": "1.0.0-alpha.2.0.16",
"@sethsharp/ui": "1.0.0-alpha.2.0.23",
"@tiptap/extension-bubble-menu": "^2.2.1",
"@tiptap/extension-code-block-lowlight": "^2.2.4",
"@tiptap/extension-document": "^2.2.1",
Expand Down
1 change: 0 additions & 1 deletion resources/js/Components/Blogs/CreateEditForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import {
Error,
Combobox,
FormGrid,
Select,
Form,
ImageUpload,
} from '@sethsharp/ui'
Expand Down
4 changes: 3 additions & 1 deletion resources/js/Layouts/IndexBlogsLayout.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script setup>
import { router, Link } from '@inertiajs/vue3'
import { PrimaryButton, Tabs } from '@sethsharp/ui'
import { PrimaryButton, Tabs, Pagination } from '@sethsharp/ui'
import AuthenticatedLayout from '@/Layouts/AuthenticatedLayout.vue'
const props = defineProps({
Expand Down Expand Up @@ -32,6 +32,8 @@ const create = () => router.post(route('dashboard.blogs.create'))
<Tabs :as="Link" :tabs="tabs" :data="data">
<slot />
</Tabs>

<Pagination :data="data" />
</div>
</AuthenticatedLayout>
</template>
6 changes: 2 additions & 4 deletions resources/js/Pages/Dashboard/Tags/Index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,9 @@ const openModal = (tag = null) => {
</div>
</div>

<Modal size="sm">
<Modal :open="open" @close="open = false" size="sm">
<template #header>Manage Tag</template>
<template #content>
<CreateEditTagForm :tag="currentTag" @close="open = false" />
</template>
<CreateEditTagForm :tag="currentTag" @close="open = false" />
</Modal>
</IndexTagsLayout>
</template>
2 changes: 1 addition & 1 deletion resources/js/Pages/Profile/Edit.vue
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ defineProps({
<SecondaryButton
:href="route('logout')"
method="post"
:as="Link"
:is="Link"
class="bg-gray-200 hover:bg-gray-300 border-gray-400 border-1 p-2 rounded font-medium"
>
Log Out
Expand Down

0 comments on commit 9bd95a6

Please sign in to comment.