mirror of
https://github.com/usememos/memos.git
synced 2025-02-22 06:07:51 +01:00
fix: workspace setting state
This commit is contained in:
parent
4fcc682a15
commit
7e48d13834
@ -1,7 +1,7 @@
|
||||
import { Button, Select, Textarea, Option, Divider, Switch } from "@mui/joy";
|
||||
import { isEqual } from "lodash-es";
|
||||
import { ExternalLinkIcon } from "lucide-react";
|
||||
import { useState } from "react";
|
||||
import { useEffect, useState } from "react";
|
||||
import { toast } from "react-hot-toast";
|
||||
import { Link } from "react-router-dom";
|
||||
import { workspaceSettingNamePrefix, useWorkspaceSettingStore } from "@/store/v1";
|
||||
@ -18,16 +18,21 @@ const WorkspaceSection = () => {
|
||||
);
|
||||
const [workspaceGeneralSetting, setWorkspaceGeneralSetting] = useState<WorkspaceGeneralSetting>(originalSetting);
|
||||
|
||||
useEffect(() => {
|
||||
setWorkspaceGeneralSetting(originalSetting);
|
||||
}, [workspaceSettingStore.getWorkspaceSettingByKey(WorkspaceSettingKey.GENERAL)]);
|
||||
|
||||
const handleUpdateCustomizedProfileButtonClick = () => {
|
||||
showUpdateCustomizedProfileDialog();
|
||||
};
|
||||
|
||||
const updatePartialSetting = (partial: Partial<WorkspaceGeneralSetting>) => {
|
||||
const newWorkspaceGeneralSetting = WorkspaceGeneralSetting.fromPartial({
|
||||
...workspaceGeneralSetting,
|
||||
...partial,
|
||||
});
|
||||
setWorkspaceGeneralSetting(newWorkspaceGeneralSetting);
|
||||
setWorkspaceGeneralSetting(
|
||||
WorkspaceGeneralSetting.fromPartial({
|
||||
...workspaceGeneralSetting,
|
||||
...partial,
|
||||
}),
|
||||
);
|
||||
};
|
||||
|
||||
const handleSaveGeneralSetting = async () => {
|
||||
|
Loading…
x
Reference in New Issue
Block a user