(isNew)
| 37 | // To check node data is updated or not |
| 38 | const staleCounter = useRef(0); |
| 39 | const url = (isNew)=>{ |
| 40 | return urlBase + (isNew ? '' : nodeData._id); |
| 41 | }; |
| 42 | const isDirty = useRef(false); // useful for warnings |
| 43 | let warnOnCloseFlag = true; |
| 44 | const confirmOnCloseReset = usePreferences().getPreferencesForModule('browser').confirm_on_properties_close; |
no outgoing calls
no test coverage detected