(text)
| 162 | } |
| 163 | |
| 164 | function copyCredToClipboard(text) { |
| 165 | navigator.clipboard.writeText(text).then(() => { |
| 166 | addConsoleMessage('Password copied to clipboard', 'success'); |
| 167 | }).catch(() => { |
| 168 | addConsoleMessage('Copy failed — check browser permissions', 'warning'); |
| 169 | }); |
| 170 | } |
| 171 | |
| 172 | function exportCredentialsCSV() { |
| 173 | if (!credentialsCache || credentialsCache.length === 0) { |
nothing calls this directly
no test coverage detected