fix: chatlog component missing pinia + agenda switch to text dark mode colors (#6653)

This commit is contained in:
Nicolas Giard 2023-11-22 13:43:20 -05:00 committed by GitHub
parent 62775bc56e
commit 8bd5d9481f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 0 deletions

View file

@ -1,6 +1,13 @@
import { createApp } from 'vue'
import { createPinia } from 'pinia'
import piniaPersist from 'pinia-plugin-persist'
import Embedded from './Embedded.vue'
// Initialize store (Pinia)
const pinia = createPinia()
pinia.use(piniaPersist)
// Mount App
const mountEls = document.querySelectorAll('div.vue-embed')
@ -9,5 +16,6 @@ for (const mnt of mountEls) {
componentName: mnt.dataset.component,
componentId: mnt.dataset.componentId
})
app.use(pinia)
app.mount(mnt)
}

View file

@ -89,6 +89,12 @@
right: 0;
z-index: 1000000000;
}
.theme-dark #app-loading-footer .btn-light {
background-color: rgba(255,255,255,.1) !important;
border-color: rgba(255,255,255,.05) !important;
color: #FFF !important;
}
{% endblock %}
{% block content %}
{% origin %}