Skip to content

Commit

Permalink
fix: chatlog component missing pinia + agenda switch to text dark mod…
Browse files Browse the repository at this point in the history
…e colors (#6653)
  • Loading branch information
NGPixel authored Nov 22, 2023
1 parent 62775bc commit 8bd5d94
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
8 changes: 8 additions & 0 deletions client/embedded.js
Original file line number Diff line number Diff line change
@@ -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')
Expand All @@ -9,5 +16,6 @@ for (const mnt of mountEls) {
componentName: mnt.dataset.component,
componentId: mnt.dataset.componentId
})
app.use(pinia)
app.mount(mnt)
}
6 changes: 6 additions & 0 deletions ietf/templates/meeting/agenda.html
Original file line number Diff line number Diff line change
Expand Up @@ -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 %}
Expand Down

0 comments on commit 8bd5d94

Please sign in to comment.