This commit is contained in:
Liyas Thomas
2020-05-29 22:17:56 +05:30
parent 17dcb1826c
commit 0db291047b
4 changed files with 9 additions and 7 deletions

View File

@@ -347,7 +347,7 @@ export default {
setTimeout(() => {
this.$toast.clear()
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: "",
duration: 0,

View File

@@ -56,7 +56,7 @@
"@nuxtjs/google-analytics": "^2.3.0",
"@nuxtjs/pwa": "^3.0.0-beta.20",
"cypress": "^4.7.0",
"eslint": "^6.8.0",
"eslint": "^7.1.0",
"eslint-plugin-vue": "^6.2.2",
"husky": "^4.2.5",
"node-sass": "^4.14.1",

View File

@@ -47,7 +47,7 @@
></textarea>
</li>
</ul>
<ul v-for="(header, index) in headers" :key="index">
<ul v-for="(header, index) in headers" :key="`${header.value}_${index}`">
<li>
<autocomplete
:placeholder="$t('header_count', { count: index + 1 })"

View File

@@ -211,9 +211,11 @@
<ul>
<li>
<label for="contentType">{{ $t("content_type") }}</label>
<autocomplete :source="validContentTypes" :spellcheck="false" v-model="contentType"
>Content Type</autocomplete
>
<autocomplete
:source="validContentTypes"
:spellcheck="false"
v-model="contentType"
/>
</li>
</ul>
<ul>
@@ -747,7 +749,7 @@
></textarea>
</li>
</ul>
<ul v-for="(header, index) in headers" :key="`${header.key}_${index}`">
<ul v-for="(header, index) in headers" :key="`${header.value}_${index}`">
<li>
<autocomplete
:placeholder="$t('header_count', { count: index + 1 })"