Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/components/video-editor/VideoEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2377,14 +2377,18 @@ export default function VideoEditor() {
onClick={handleSaveProject}
className="inline-flex h-8 min-w-[96px] items-center justify-center gap-1.5 rounded-[5px] bg-white px-4 text-black transition-colors hover:bg-white/92"
>
<span className={`${hasUnsavedChanges ? "flex" : "hidden"} size-2 relative`}>
<span className="absolute inline-flex h-full w-full animate-ping rounded-full bg-sky-400 opacity-75"></span>
<span className="relative inline-flex size-2 rounded-full bg-sky-500"></span>
</span>
<Save className="h-4 w-4" />
<span className="text-sm font-semibold tracking-tight">{t("common.actions.save")}</span>
</Button>
<div className="mx-1 h-5 w-px bg-white/10" />
<DropdownMenu open={showExportDropdown} onOpenChange={setShowExportDropdown} modal={false}>
<DropdownMenuTrigger asChild>
<Button
type="button"
type="button"
onClick={handleOpenExportDropdown}
className="inline-flex h-8 min-w-[112px] items-center justify-center gap-2 rounded-[5px] bg-[#2563EB] px-4.5 text-white transition-colors hover:bg-[#2563EB]/92"
>
Expand Down