chatbot
Build and Release / release (push) Successful in 33s

This commit is contained in:
2026-05-09 11:55:45 +07:00
parent a9b8c4ab8b
commit add1728916
6 changed files with 248 additions and 3 deletions
+2
View File
@@ -8,6 +8,7 @@ import { apiGetCurrentUser } from "@/service/auth";
import { setUserData } from "@/store/features/userSlice";
import React, { useEffect } from "react";
import { useDispatch } from "react-redux";
import ChatbotWidget from "@/components/ui/chat/ChatbotWidget";
export default function AdminLayout({
children,
@@ -51,6 +52,7 @@ export default function AdminLayout({
{/* Page Content */}
<div className="p-4 mx-auto max-w-(--breakpoint-2xl) md:p-6">{children}</div>
</div>
<ChatbotWidget />
</div>
);
}
+3 -3
View File
@@ -342,7 +342,7 @@ export default function ProjectsPage() {
variant="outline"
disabled={isExportingProjectId === String(project.id)}
onClick={() => handleExportHeadSnapshot(project)}
title="Export head commit snapshot_json"
// title="Export head commit snapshot_json"
>
ExportJSON
</Button>
@@ -484,7 +484,7 @@ export default function ProjectsPage() {
disabled={isSubmitting}
className="bg-gray-900 hover:bg-gray-800 text-white"
onClick={handleCreateProjectWithJson}
title="Tạo dự án và tạo commit đầu tiên từ JSON snapshot"
// title="Tạo dự án và tạo commit đầu tiên từ JSON snapshot"
>
Tạo với JSON
</Button>
@@ -494,4 +494,4 @@ export default function ProjectsPage() {
</Modal>
</div>
);
}
}