🐛 Fixed #912
This commit is contained in:
@@ -347,7 +347,7 @@ export default {
|
|||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
this.$toast.clear()
|
this.$toast.clear()
|
||||||
this.$toast.show(
|
this.$toast.show(
|
||||||
"<span>Get <u><a href='https://gum.co/keky' target='_blank'>De-Coding The Passion Project</a></u> book, expertly crafted by the creator of Postwoman. Whoosh this away to dimiss →</span>",
|
"<span>Get <u><a href='https://gum.co/keky' target='_blank' rel='noopener'>De-Coding The Passion Project</a></u> book, expertly crafted by the creator of Postwoman. Whoosh this away to dimiss →</span>",
|
||||||
{
|
{
|
||||||
icon: "",
|
icon: "",
|
||||||
duration: 0,
|
duration: 0,
|
||||||
|
|||||||
@@ -56,7 +56,7 @@
|
|||||||
"@nuxtjs/google-analytics": "^2.3.0",
|
"@nuxtjs/google-analytics": "^2.3.0",
|
||||||
"@nuxtjs/pwa": "^3.0.0-beta.20",
|
"@nuxtjs/pwa": "^3.0.0-beta.20",
|
||||||
"cypress": "^4.7.0",
|
"cypress": "^4.7.0",
|
||||||
"eslint": "^6.8.0",
|
"eslint": "^7.1.0",
|
||||||
"eslint-plugin-vue": "^6.2.2",
|
"eslint-plugin-vue": "^6.2.2",
|
||||||
"husky": "^4.2.5",
|
"husky": "^4.2.5",
|
||||||
"node-sass": "^4.14.1",
|
"node-sass": "^4.14.1",
|
||||||
|
|||||||
@@ -47,7 +47,7 @@
|
|||||||
></textarea>
|
></textarea>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul v-for="(header, index) in headers" :key="index">
|
<ul v-for="(header, index) in headers" :key="`${header.value}_${index}`">
|
||||||
<li>
|
<li>
|
||||||
<autocomplete
|
<autocomplete
|
||||||
:placeholder="$t('header_count', { count: index + 1 })"
|
:placeholder="$t('header_count', { count: index + 1 })"
|
||||||
|
|||||||
@@ -211,9 +211,11 @@
|
|||||||
<ul>
|
<ul>
|
||||||
<li>
|
<li>
|
||||||
<label for="contentType">{{ $t("content_type") }}</label>
|
<label for="contentType">{{ $t("content_type") }}</label>
|
||||||
<autocomplete :source="validContentTypes" :spellcheck="false" v-model="contentType"
|
<autocomplete
|
||||||
>Content Type</autocomplete
|
:source="validContentTypes"
|
||||||
>
|
:spellcheck="false"
|
||||||
|
v-model="contentType"
|
||||||
|
/>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul>
|
<ul>
|
||||||
@@ -747,7 +749,7 @@
|
|||||||
></textarea>
|
></textarea>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul v-for="(header, index) in headers" :key="`${header.key}_${index}`">
|
<ul v-for="(header, index) in headers" :key="`${header.value}_${index}`">
|
||||||
<li>
|
<li>
|
||||||
<autocomplete
|
<autocomplete
|
||||||
:placeholder="$t('header_count', { count: index + 1 })"
|
:placeholder="$t('header_count', { count: index + 1 })"
|
||||||
|
|||||||
Reference in New Issue
Block a user