aboutsummaryrefslogtreecommitdiff
path: root/components/admin
diff options
context:
space:
mode:
authorFactiven <[email protected]>2023-10-28 22:50:51 +0700
committerFactiven <[email protected]>2023-10-28 22:50:51 +0700
commita25282429761ff0670a50fd74f8c24bdb38e728c (patch)
tree0cd14840e665f1912842967de7427a31556190e6 /components/admin
parentUpdate v4.2.3 (diff)
downloadmoopa-a25282429761ff0670a50fd74f8c24bdb38e728c.tar.xz
moopa-a25282429761ff0670a50fd74f8c24bdb38e728c.zip
Update v4.2.4
Diffstat (limited to 'components/admin')
-rw-r--r--components/admin/dashboard/index.js3
-rw-r--r--components/admin/layout.js1
2 files changed, 4 insertions, 0 deletions
diff --git a/components/admin/dashboard/index.js b/components/admin/dashboard/index.js
index d0c9963..930b8e0 100644
--- a/components/admin/dashboard/index.js
+++ b/components/admin/dashboard/index.js
@@ -168,12 +168,14 @@ export default function AdminDashboard({
</div>
<div className="flex font-karla font-semibold gap-2">
<button
+ title="Broadcast"
type="submit"
className="bg-image text-white py-2 px-4 rounded-md hover:bg-opacity-80 transition duration-300"
>
Broadcast
</button>
<button
+ title="Remove"
type="button"
onClick={handleRemove}
className="bg-red-700 text-white py-2 px-4 rounded-md hover:bg-opacity-80 transition duration-300"
@@ -247,6 +249,7 @@ export default function AdminDashboard({
)}
<button
type="button"
+ title="Resolved"
onClick={() => {
setReportId(i?.id);
handleResolved();
diff --git a/components/admin/layout.js b/components/admin/layout.js
index 3209dcf..85a5fe7 100644
--- a/components/admin/layout.js
+++ b/components/admin/layout.js
@@ -49,6 +49,7 @@ export default function AdminLayout({ children, page, setPage }) {
<div className="flex flex-col px-1">
{Navigation.map((item, index) => (
<button
+ title="Dashboard"
key={item.name}
onClick={() => {
setPage(item.page);