mirror of
https://github.com/WebTools-NG/WebTools-NG
synced 2024-11-26 13:00:18 +00:00
Merge pull request #90 from WebTools-NG/#79-ET--Export-to-xlsx-as-well
Caspers lost changes are back for About Box
This commit is contained in:
commit
029c40f43e
4 changed files with 8 additions and 10 deletions
|
@ -10,6 +10,7 @@
|
|||
<span class="icon is-medium is-left">
|
||||
<i class="fas fa-globe"></i>
|
||||
</span>
|
||||
<p />
|
||||
<b-button id="btnDownload" variant="success" v-on:click="forcedownload">{{ $t("Common.Language.btnForce") }}</b-button>
|
||||
</div>
|
||||
<br/>
|
||||
|
|
|
@ -55,17 +55,14 @@ import i18n from '../../i18n'
|
|||
{
|
||||
href: { path: '/' },
|
||||
title: 'Theme',
|
||||
icon: 'fas fa-palette'
|
||||
icon: 'fas fa-palette',
|
||||
hidden: true
|
||||
},
|
||||
{
|
||||
href: { path: '/' },
|
||||
title: 'Factory Reset',
|
||||
icon: 'fas fa-power-off'
|
||||
},
|
||||
{
|
||||
href: { path: '/' },
|
||||
title: 'Logout',
|
||||
icon: 'fas fa-sign-out-alt'
|
||||
icon: 'fas fa-power-off',
|
||||
hidden: true
|
||||
}
|
||||
],
|
||||
collapsed: false,
|
||||
|
|
|
@ -50,7 +50,6 @@
|
|||
</b-form-group>
|
||||
</div>
|
||||
|
||||
<!-- <h1 class="title is-3">{{ $t("Modules.ET.HExportMedia") }}</h1> -->
|
||||
<div class="buttons">
|
||||
<b-button
|
||||
type="is-primary"
|
||||
|
@ -58,6 +57,7 @@
|
|||
icon-left="fas fa-file-download"
|
||||
icon-pack="fas"
|
||||
:disabled="btnDisable == true"
|
||||
variant="success"
|
||||
>{{ $t("Modules.ET.HExportMedia") }}</b-button>
|
||||
</div>
|
||||
<b-container fluid>
|
||||
|
|
|
@ -31,11 +31,11 @@ const mutations = {
|
|||
|
||||
const qs = require('querystring')
|
||||
const actions = {
|
||||
fetchPOEContrib({ commit }) {
|
||||
async fetchPOEContrib({ commit }) {
|
||||
const config = {
|
||||
headers: headers
|
||||
}
|
||||
axios.post( baseUrl + 'contributors/list', qs.stringify(requestBody), config)
|
||||
await axios.post( baseUrl + 'contributors/list', qs.stringify(requestBody), config)
|
||||
.then((response) => {
|
||||
commit('UPDATE_CONTRIBUTORS', response.data.result.contributors)
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue