Troubleshoot how can I get my github admin/editor to connect to my github app #167723
-
BodyHi, a non-coder who has been using copilot to create both the app and editor and have reached the final stage where copilot cannot help me any further. There are small issues in the admin/editor that only an expert can solve;
Also, its supposed to be saving my quizzes in automatic numerical order to supabase table. Apparently, the saved file is json because it should connect to the app upon pressing the 'start' button (not able to get it to do that either). I've requested that each automatic numerical given to that quiz should be added at the end of a URL link, example each 'quiz.01' should basically appear to be as this https://anica-blip.github.io/3c-quiz/quiz.01, which would then be connected to the START button of the 'app' immediately. Here are the two links that have minor fixes: If someone could just help me finalize this project I would be REALLY, REALLY grateful. I AM ALMOST at the final stage so imagine how these tweaks are being the blocks to get it off and running. Ask me questions, please don't give me 'generic IT manual' replies, Copilot did a lot of that and just couldn't fix it, going back and forth for hours. Guidelines
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 7 replies
-
The right-to-left text and needing to hold the right click are likely CSS or event handler bugs (maybe For saving quizzes, you’ll need to auto-increment quiz IDs (like Happy to help if you can share the editor and Start button code! |
Beta Was this translation helpful? Give feedback.
-
The issues with text starting from the right and needing to hold the right-click to type are most likely caused by a CSS problem (like direction: rtl) or a buggy event listener tied to the editable area — that should be the first thing to inspect and fix. As for saving quizzes, you'll need to handle the numbering yourself — manually assign IDs like quiz.01, quiz.02, and so on when saving to Supabase. Then, use those IDs to generate URLs like .../quiz.01 so the quiz can be accessed directly. Finally, make sure the START button is set up to load the correct quiz based on the ID — whether that means fetching it from Supabase or from a specific JSON file. |
Beta Was this translation helpful? Give feedback.
The right-to-left text and needing to hold the right click are likely CSS or event handler bugs (maybe
direction: rtl
or brokencontenteditable
). Check that first.For saving quizzes, you’ll need to auto-increment quiz IDs (like
quiz.01
) manually in Supabase, and then generate links like.../quiz.01
.Make sure the Start button fetches the right quiz from Supabase or JSON using that ID.
Happy to help if you can share the editor and Start button code!