mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-07 05:50:13 +01:00
Fix link via paste entries from clipboard did not work with app entries
Gave errors like File '#' is not an absolute path!
This commit is contained in:
parent
32e04b1ea6
commit
5da2b081ba
@ -509,7 +509,8 @@ export class Et2LinkTo extends Et2InputWidget(LitElement)
|
||||
let fileInfo = []
|
||||
selected.forEach(file =>
|
||||
{
|
||||
fileInfo.push({...this.pasteDialog.fileInfo(file), app: "link"});
|
||||
const info = this.pasteDialog.fileInfo(file);
|
||||
fileInfo.push(info);
|
||||
})
|
||||
this.handleVfsFile(button, fileInfo);
|
||||
this.pasteButton.value = [];
|
||||
|
Loading…
Reference in New Issue
Block a user