mirror of
https://github.com/Qortal/qortal-ui.git
synced 2025-11-02 05:37:58 +00:00
fix code block text color and members pagination
This commit is contained in:
@@ -1880,7 +1880,7 @@ class ChatPage extends LitElement {
|
||||
return memberItem
|
||||
})
|
||||
const membersWithName = await Promise.all(getMembersWithName)
|
||||
this.groupMembers = membersWithName
|
||||
this.groupMembers = [...this.groupMembers, ...membersWithName]
|
||||
this.pageNumber = this.pageNumber + 1
|
||||
} catch (error) {
|
||||
}
|
||||
|
||||
@@ -101,7 +101,7 @@ function processText(input) {
|
||||
// Store the URL in a data attribute
|
||||
link.setAttribute('data-url', part)
|
||||
link.textContent = part
|
||||
link.style.color = 'var(--nav-text-color)'
|
||||
link.style.color = 'var(--code-block-text-color)'
|
||||
link.style.textDecoration = 'underline'
|
||||
link.style.cursor = 'pointer'
|
||||
|
||||
@@ -125,7 +125,7 @@ function processText(input) {
|
||||
url: `qdn/browser/index.html${query}`,
|
||||
id: uid(),
|
||||
myPlugObj: {
|
||||
"url": service === 'WEBSITE' ? "websites" : "qapps",
|
||||
"url": "myapp",
|
||||
"domain": "core",
|
||||
"page": `qdn/browser/index.html${query}`,
|
||||
"title": name,
|
||||
|
||||
Reference in New Issue
Block a user