Devin Howard
Devin Howard
hah this works really well actually. it won't work in github because of Content Security Policy restrictions, but most other sites it'll work with. Maybe I need to change the...
Try opening the error console. Also make sure ell youre logged in to metamaps when you use it, and that you change the map id maybe? If none of that...
We could also create them at random locations within -100 or +100px of the origin like: ``` x: -100 + Math.random() * 200 ```
Great idea. Would you (or anyone else coming across this issue) be able to prepare a pull request to do this? We don't have anyone actively working on maintenance patches...
I think we should use the exact same algorithm as the frontend, and uodate both algoritms to check if a topic already exists at a given location On Sat, Oct...
That would be ideal, but even checking the pixel perfect location solves the major problem (which is - if I auto layout a bunch of topics, wait 5 minutes, then...
This is pretty easy to fix ```diff diff --git a/frontend/src/components/TopicCard/Title.js b/frontend/src/components/TopicCard/Title.js index 4ebdeedd..26b6da16 100644 --- a/frontend/src/components/TopicCard/Title.js +++ b/frontend/src/components/TopicCard/Title.js @@ -14,7 +14,7 @@ class Title extends Component { if (this.props.authorizedToEdit) {...
The breadth on this is probably lower than 0.9; I don't think that many people do imports yet.
``` Mapping.where(mappable_type: 'Synapse').find_each do |mapping| synapse = mapping.mappable if synapse.nil? mapping.delete next end m1 = Mapping.find_by(mappable_type: 'Topic', mappable_id: synapse.topic1_id, map_id: mapping.map_id) if m1.nil? mapping.delete next end m2 = Mapping.find_by(mappable_type: 'Topic',...
Ah! Thanks for the tip. Documenting my steps here... I tried `nvm use node` which installed 19, but it didn't install. Then I did `nvm use 16` and I got...