Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
const selectDirBtn = document.getElementById('select-directory')
selectDirBtn.addEventListener('click', async () => {
const path = await window.electronAPI.openFileDialog()
document.getElementById('selected-file').innerHTML = `You selected: ${path}`
})