mirror of
https://github.com/usememos/memos.git
synced 2024-12-26 07:01:17 +08:00
chore: fix memo links
This commit is contained in:
parent
9a88e00df0
commit
c8baeb86ec
3 changed files with 3 additions and 3 deletions
|
@ -24,7 +24,7 @@ const MemoActionMenu = (props: Props) => {
|
|||
const location = useLocation();
|
||||
const navigateTo = useNavigateTo();
|
||||
const memoStore = useMemoStore();
|
||||
const isInMemoDetailPage = location.pathname.startsWith(`/m/${memo.name}`);
|
||||
const isInMemoDetailPage = location.pathname.startsWith(`/m/${memo.uid}`);
|
||||
|
||||
const handleTogglePinMemoBtnClick = async () => {
|
||||
try {
|
||||
|
|
|
@ -31,7 +31,7 @@ const ReferencedMemo = ({ resourceId, params: paramsStr }: Props) => {
|
|||
const displayContent = paramsText || (memo.content.length > 12 ? `${memo.content.slice(0, 12)}...` : memo.content);
|
||||
|
||||
const handleGotoMemoDetailPage = () => {
|
||||
navigateTo(`/m/${memo.name}`);
|
||||
navigateTo(`/m/${memo.uid}`);
|
||||
};
|
||||
|
||||
return (
|
||||
|
|
|
@ -45,7 +45,7 @@ const MemoView: React.FC<Props> = (props: Props) => {
|
|||
).length;
|
||||
const relativeTimeFormat = Date.now() - memo.displayTime!.getTime() > 1000 * 60 * 60 * 24 ? "datetime" : "auto";
|
||||
const readonly = memo.creator !== user?.name;
|
||||
const isInMemoDetailPage = location.pathname.startsWith(`/m/${memo.name}`);
|
||||
const isInMemoDetailPage = location.pathname.startsWith(`/m/${memo.uid}`);
|
||||
|
||||
// Initial related data: creator.
|
||||
useEffect(() => {
|
||||
|
|
Loading…
Reference in a new issue