Recently, I decided to delve into learning Electron and as a beginner, I decided to clone a simple electron tutorial app to experiment with its features. (The official Electron starter app worked perfectly for me).
The GitHub repository I used: https://github.com/crilleengvall/electron-tutorial-app
I have not included the scripts here as they are readily available in the repository.
What I've modified: I made changes to the index.html and sections->welcome.html as indicated below.
The issue at hand: The expected changes did not reflect in the Electron app.
(Note: I haven't made any alterations to the .js or .css files)
Original UI (from the repo): https://i.sstatic.net/TTsSo.png
Changes in index.html (expected changes in the left panel of UI): https://i.sstatic.net/PhvOg.png
Changes in sections->welcome.html (expected changes in the main panel of UI): https://i.sstatic.net/4fAgf.png
After implementing those changes and running the app, this is what I encountered. (On the left panel, "bacon" is displayed and on the main panel, the "testing" header appears but the paragraph underneath remains unchanged.) https://i.sstatic.net/ofMz3.png
I'm a bit perplexed by what's happening because after some research, I suspected it might be a session cache issue. However, only a portion seems to be edited while the rest remains unaffected.
Any assistance would be highly appreciated.