You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm having an issue with saving my mind map. When I load a mind map from a URL in the query string, it loads fine. However, when I try to save it, the input box in the save area only populates the directory.
As you can see in the attached screenshot, I was expecting the filename to be at the end, so instead, I have to type it manually. Is there something that can be done to fix this issue?
Thanks in advance for your help!
The text was updated successfully, but these errors were encountered:
if(url.match(/\.mymind$/)){// complete file name}else{// just a pathif(url.charAt(url.length-1)!="/"){url+="/";}url+=`${map.name}.${formatRepo.get("native")!.extension}`;}
My memories might be completely off, but I think that saving is supposed to work like this:
"save" button overwrites previous data; in order to do so, the complete URL must be known
"save as" is supposed to create a (differently-named) copy; therefore, only the incomplete path is extracted into the input field during the load operation
In other words, if you use "save as", you are supposed to provide an explicit new file name (url suffix).
I'm having an issue with saving my mind map. When I load a mind map from a URL in the query string, it loads fine. However, when I try to save it, the input box in the save area only populates the directory.
Here's the URL I'm using:
https://nosdav.com/my-mind/?url=https%3A%2F%2Fnosdav.nostr.rocks%2Fde7ecd1e2976a6adb2ffa5f4db81a7d812c8bb6698aa00dcf1e76adb55efd645%2Fnostr.json
As you can see in the attached screenshot, I was expecting the filename to be at the end, so instead, I have to type it manually. Is there something that can be done to fix this issue?
Thanks in advance for your help!
The text was updated successfully, but these errors were encountered: