mirror of
https://github.com/usememos/memos.git
synced 2024-12-19 09:02:49 +03:00
fix: typo (#357)
* feat: resource dialog enhancements * update * fix: typo Co-authored-by: boojack <stevenlgtm@gmail.com>
This commit is contained in:
parent
b891e08928
commit
30daea0c4f
@ -90,7 +90,7 @@ const ResourcesDialog: React.FC<Props> = (props: Props) => {
|
|||||||
inputEl.click();
|
inputEl.click();
|
||||||
};
|
};
|
||||||
|
|
||||||
const handlPreviewBtnClick = (resource: Resource) => {
|
const handlePreviewBtnClick = (resource: Resource) => {
|
||||||
const resourceUrl = `${window.location.origin}/o/r/${resource.id}/${resource.filename}`;
|
const resourceUrl = `${window.location.origin}/o/r/${resource.id}/${resource.filename}`;
|
||||||
if (resource.type.startsWith("image")) {
|
if (resource.type.startsWith("image")) {
|
||||||
showPreviewImageDialog(resourceUrl);
|
showPreviewImageDialog(resourceUrl);
|
||||||
@ -194,7 +194,7 @@ const ResourcesDialog: React.FC<Props> = (props: Props) => {
|
|||||||
<>
|
<>
|
||||||
<button
|
<button
|
||||||
className="w-full text-left text-sm leading-6 py-1 px-3 cursor-pointer rounded hover:bg-gray-100"
|
className="w-full text-left text-sm leading-6 py-1 px-3 cursor-pointer rounded hover:bg-gray-100"
|
||||||
onClick={() => handlPreviewBtnClick(resource)}
|
onClick={() => handlePreviewBtnClick(resource)}
|
||||||
>
|
>
|
||||||
{t("resources.preview")}
|
{t("resources.preview")}
|
||||||
</button>
|
</button>
|
||||||
|
Loading…
Reference in New Issue
Block a user