mirror of
https://github.com/MoonTechLab/LunaTV.git
synced 2026-02-22 18:44:44 +08:00
fix: enable d1 saving
This commit is contained in:
@@ -1 +1 @@
|
||||
20250730014453
|
||||
20250730101917
|
||||
@@ -1222,9 +1222,9 @@ const SiteConfigComponent = ({ config }: { config: AdminConfig | null }) => {
|
||||
<div className='flex justify-end'>
|
||||
<button
|
||||
onClick={handleSave}
|
||||
disabled={saving || isD1Storage || isUpstashStorage}
|
||||
disabled={saving}
|
||||
className={`px-4 py-2 ${
|
||||
saving || isD1Storage || isUpstashStorage
|
||||
saving
|
||||
? 'bg-gray-400 cursor-not-allowed'
|
||||
: 'bg-green-600 hover:bg-green-700'
|
||||
} text-white rounded-lg transition-colors`}
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
'use client';
|
||||
|
||||
const CURRENT_VERSION = '20250730014453';
|
||||
const CURRENT_VERSION = '20250730101917';
|
||||
|
||||
// 版本检查结果枚举
|
||||
export enum UpdateStatus {
|
||||
|
||||
Reference in New Issue
Block a user