Read only mode in app

I have a pretty big graph. Sometimes I look at my graph, but the editing experience on a phone is not that good. So, I particularly avoid doing it. But I will read it more confidently if we can have read-only mode.

I hope others share the same experience. If there is any alternative view or solution, please let me know.

Welcome. Concerning alternative solutions, it is possible to experiment with silencing edit-related events, by adding code in file custom.js. For example, could prevent clicking from editing a block by using code like addEventListener('mousedown', (e)=>e.stopPropagation(), true) It will take some effort to thoroughly cover every case, but it generally works.