We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3acc557 + f1bd95f commit 6e9484dCopy full SHA for 6e9484d
composer.json
@@ -22,7 +22,7 @@
22
"php": "^8.1",
23
"filament/filament": "^3.2.138",
24
"spatie/laravel-package-tools": "^1.9.2",
25
- "ueberdosis/tiptap-php": "^1.1"
+ "ueberdosis/tiptap-php": "^2.0.0"
26
},
27
"require-dev": {
28
"laravel/pint": "^1.0",
src/Extensions/Marks/Link.php
@@ -8,14 +8,14 @@ class Link extends BaseLink
8
{
9
public function addOptions(): array
10
11
- return [
+ return array_merge(parent::addOptions(), [
12
'openOnClick' => true,
13
'linkOnPaste' => true,
14
'autoLink' => true,
15
'protocols' => [],
16
'HTMLAttributes' => [],
17
'validate' => 'undefined',
18
- ];
+ ]);
19
}
20
21
public function addAttributes(): array
0 commit comments