mirror of
https://github.com/WebTools-NG/WebTools-NG
synced 2025-02-18 12:28:26 +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">
|
<span class="icon is-medium is-left">
|
||||||
<i class="fas fa-globe"></i>
|
<i class="fas fa-globe"></i>
|
||||||
</span>
|
</span>
|
||||||
|
<p />
|
||||||
<b-button id="btnDownload" variant="success" v-on:click="forcedownload">{{ $t("Common.Language.btnForce") }}</b-button>
|
<b-button id="btnDownload" variant="success" v-on:click="forcedownload">{{ $t("Common.Language.btnForce") }}</b-button>
|
||||||
</div>
|
</div>
|
||||||
<br/>
|
<br/>
|
||||||
|
|
|
@ -55,17 +55,14 @@ import i18n from '../../i18n'
|
||||||
{
|
{
|
||||||
href: { path: '/' },
|
href: { path: '/' },
|
||||||
title: 'Theme',
|
title: 'Theme',
|
||||||
icon: 'fas fa-palette'
|
icon: 'fas fa-palette',
|
||||||
|
hidden: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
href: { path: '/' },
|
href: { path: '/' },
|
||||||
title: 'Factory Reset',
|
title: 'Factory Reset',
|
||||||
icon: 'fas fa-power-off'
|
icon: 'fas fa-power-off',
|
||||||
},
|
hidden: true
|
||||||
{
|
|
||||||
href: { path: '/' },
|
|
||||||
title: 'Logout',
|
|
||||||
icon: 'fas fa-sign-out-alt'
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
collapsed: false,
|
collapsed: false,
|
||||||
|
|
|
@ -50,7 +50,6 @@
|
||||||
</b-form-group>
|
</b-form-group>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- <h1 class="title is-3">{{ $t("Modules.ET.HExportMedia") }}</h1> -->
|
|
||||||
<div class="buttons">
|
<div class="buttons">
|
||||||
<b-button
|
<b-button
|
||||||
type="is-primary"
|
type="is-primary"
|
||||||
|
@ -58,6 +57,7 @@
|
||||||
icon-left="fas fa-file-download"
|
icon-left="fas fa-file-download"
|
||||||
icon-pack="fas"
|
icon-pack="fas"
|
||||||
:disabled="btnDisable == true"
|
:disabled="btnDisable == true"
|
||||||
|
variant="success"
|
||||||
>{{ $t("Modules.ET.HExportMedia") }}</b-button>
|
>{{ $t("Modules.ET.HExportMedia") }}</b-button>
|
||||||
</div>
|
</div>
|
||||||
<b-container fluid>
|
<b-container fluid>
|
||||||
|
|
|
@ -31,11 +31,11 @@ const mutations = {
|
||||||
|
|
||||||
const qs = require('querystring')
|
const qs = require('querystring')
|
||||||
const actions = {
|
const actions = {
|
||||||
fetchPOEContrib({ commit }) {
|
async fetchPOEContrib({ commit }) {
|
||||||
const config = {
|
const config = {
|
||||||
headers: headers
|
headers: headers
|
||||||
}
|
}
|
||||||
axios.post( baseUrl + 'contributors/list', qs.stringify(requestBody), config)
|
await axios.post( baseUrl + 'contributors/list', qs.stringify(requestBody), config)
|
||||||
.then((response) => {
|
.then((response) => {
|
||||||
commit('UPDATE_CONTRIBUTORS', response.data.result.contributors)
|
commit('UPDATE_CONTRIBUTORS', response.data.result.contributors)
|
||||||
})
|
})
|
||||||
|
|
Loading…
Add table
Reference in a new issue