Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wiki-js
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
wiki-js
Commits
a3a1dc12
Commit
a3a1dc12
authored
Apr 26, 2020
by
NGPixel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: ckeditor - extra ) when insert page link
parent
bbe64ef6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
admin-rendering.vue
client/components/admin/admin-rendering.vue
+1
-1
editor-ckeditor.vue
client/components/editor/editor-ckeditor.vue
+1
-1
No files found.
client/components/admin/admin-rendering.vue
View file @
a3a1dc12
...
...
@@ -53,7 +53,7 @@
@click='selectRenderer(rdr.key)'
:class='currentRenderer.key === rdr.key ? (darkMode ? `grey darken-4-l4` : `blue lighten-5`) : ``'
)
v-list-item-avatar(size='24')
v-list-item-avatar(size='24'
, tile
)
v-icon(:color='currentRenderer.key === rdr.key ? "primary" : "grey"')
{{
rdr
.
icon
}}
v-list-item-content
v-list-item-title
{{
rdr
.
title
}}
...
...
client/components/editor/editor-ckeditor.vue
View file @
a3a1dc12
...
...
@@ -57,7 +57,7 @@ export default {
this
.
insertLinkDialog
=
true
}
,
insertLinkHandler
({
locale
,
path
}
)
{
this
.
editor
.
execute
(
'link'
,
siteLangs
.
length
>
0
?
`/${locale
}
/${path
}
)
`
:
`/${path
}
`
)
this
.
editor
.
execute
(
'link'
,
siteLangs
.
length
>
0
?
`/${locale
}
/${path
}
`
:
`/${path
}
`
)
}
}
,
async
mounted
()
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment