Compare commits

Invalid templates have been ignored

1 invalid template(s) found .github/PULL_REQUEST_TEMPLATE.md: 'about' is required

..

No commits in common. 'f1161aed594239a694ed522eddc39b15ef9d6547' and '66ca18c499194effdbebc80bb1c1f799b7ee98a0' have entirely different histories.

@ -98,7 +98,6 @@
:search='innerSearch' :search='innerSearch'
:loading='isLoading' :loading='isLoading'
:options.sync='pagination' :options.sync='pagination'
@page-count='pageTotal = $event'
hide-default-footer hide-default-footer
ref='dude' ref='dude'
) )
@ -184,7 +183,6 @@ export default {
sortDesc: [false] sortDesc: [false]
}, },
pages: [], pages: [],
pageTotal: 0,
isLoading: true, isLoading: true,
scrollStyle: { scrollStyle: {
vuescroll: {}, vuescroll: {},
@ -216,6 +214,9 @@ export default {
tagsSelected () { tagsSelected () {
return _.filter(this.tags, t => _.includes(this.selection, t.tag)) return _.filter(this.tags, t => _.includes(this.selection, t.tag))
}, },
pageTotal () {
return Math.ceil(this.pages.length / this.pagination.itemsPerPage)
},
orderByItems () { orderByItems () {
return [ return [
{ text: this.$t('tags:orderByField.creationDate'), value: 'createdAt' }, { text: this.$t('tags:orderByField.creationDate'), value: 'createdAt' },

@ -52,7 +52,7 @@ html
script( script(
crossorigin='anonymous' crossorigin='anonymous'
src='https://cdnjs.cloudflare.com/polyfill/v3/polyfill.min.js?features=EventSource' src='https://polyfill.io/v3/polyfill.min.js?features=EventSource'
) )
//- JS //- JS

@ -8,6 +8,14 @@ const { nanoid } = require('nanoid')
const { DateTime } = require('luxon') const { DateTime } = require('luxon')
const { gte } = require('semver') const { gte } = require('semver')
// ----------------------------------------
// Check Node.js version
// ----------------------------------------
if (gte(process.version, '21.0.0')) {
console.error('You\'re using an unsupported Node.js version. Please read the requirements.')
process.exit(1)
}
// ---------------------------------------- // ----------------------------------------
// Init WIKI instance // Init WIKI instance
// ---------------------------------------- // ----------------------------------------

@ -6,7 +6,7 @@ head: |
body: | body: |
<script> <script>
window.onload = function() { window.onload = function() {
Artalk.init({ new Artalk({
el: '#artalk-container', el: '#artalk-container',
pageKey: '{{pageId}}', pageKey: '{{pageId}}',
pageTitle: '', pageTitle: '',

Loading…
Cancel
Save