Skip to content

Commit f9e0bce

Browse files
authored
Merge pull request #2228 from nextcloud/fix/inline-url-ctrl-click
fix: Prevent inline editing on Ctrl-Click for URL columns
2 parents 65300ce + 2c606a0 commit f9e0bce

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

src/shared/components/ncTable/partials/TableCellLink.vue

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,10 @@ export default {
212212
t,
213213
214214
handleStartEditing(event) {
215+
if (event && (event.ctrlKey || event.metaKey)) {
216+
return
217+
}
218+
215219
this.isInitialEditClick = true
216220
this.startEditing()
217221
if (event) {

0 commit comments

Comments
 (0)