Skip to content

Commit cc69703

Browse files
Resul AvanResul Avan
Resul Avan
authored and
Resul Avan
committed
set password updates
1 parent 88be8cf commit cc69703

File tree

7 files changed

+12
-20
lines changed

7 files changed

+12
-20
lines changed

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ See the [Features](#features) for more functionalities
142142
- [x] tslint
143143
- [x] eslint
144144
- [x] linting before `build`
145-
- [x] backend contracts in a npm package
145+
- [x] backend contracts in an NPM package
146146

147147
Have a look [Trello Board](https://trello.com/b/6JN23G7A/boiler-plate) for more coming functionality
148148

Diff for: src/components/form/SetEmailPasswordForm.vue

+3-12
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,8 @@
88
</p>
99
<div class="box">
1010
<ValidationObserver v-slot="{ passes }" tag="form">
11-
<FieldWithValue
12-
v-if="!!email"
13-
:value="email"
14-
:label="$t('common.field.email')"
15-
:disabled="true"
16-
label-position="on-border"
17-
class="has-margin-bottom-15"
18-
/>
19-
2011
<InputWithValidation
21-
v-else
12+
v-if="!email"
2213
v-model="credentials.email"
2314
:label="$t('common.field.email')"
2415
:placeholder="$t('common.field.emailPlaceholder')"
@@ -34,7 +25,7 @@
3425
input-type="password"
3526
:label="$t('common.field.password')"
3627
:placeholder="$t('common.field.passwordPlaceholder')"
37-
rules="required|min:4|confirmed:confirmedPassword"
28+
rules="required|min:4"
3829
vid="password"
3930
label-position="on-border"
4031
class="has-margin-5"
@@ -45,7 +36,7 @@
4536
input-type="password"
4637
:label="$t('common.field.confirmPassword')"
4738
:placeholder="$t('common.field.confirmPasswordPlaceholder')"
48-
rules="required"
39+
rules="required|confirmed:password"
4940
vid="confirmedPassword"
5041
label-position="on-border"
5142
class="has-margin-5"

Diff for: src/components/navbar/TopImage.vue

+1-2
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,10 @@
3333

3434
<script lang="ts">
3535
import { Component, Vue } from 'nuxt-property-decorator'
36-
import SocialShare from '~/components/ui/social/SocialShare.vue'
3736
import { Routes } from '~/types'
3837
3938
@Component({
40-
components: { SocialShare }
39+
components: {}
4140
})
4241
export default class TopImage extends Vue {
4342
get routes () {

Diff for: src/components/navbar/TopShare.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
icon="share-variant"
66
type="is-primary"
77
/>
8-
<small class="has-text-primary">Share</small>
8+
<small class="has-text-primary has-margin-left-5"> {{ $t('common.Share') }} </small>
99
</template>
1010

1111
<b-navbar-item>

Diff for: src/components/ui/social/SocialShare.vue

-2
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,6 @@ export default class SocialShare extends Vue {
5050
}
5151
}
5252
53-
console.log('LINK', link)
54-
5553
return link
5654
.replace(/@u/g, encodeURIComponent(this.pageMeta.url))
5755
.replace(/@t/g, encodeURIComponent(this.pageMeta.title))

Diff for: src/i18n/en.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@ const messages = {
3939
search: 'Search',
4040
follow: 'Follow',
4141
unfollow: 'Unfollow',
42-
refresh: 'refresh'
42+
refresh: 'refresh',
43+
share: 'share',
44+
Share: 'Share'
4345
},
4446

4547
topNavbar: {

Diff for: src/i18n/tr.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@ const messages = {
4040
search: 'Ara',
4141
follow: 'Takip Et',
4242
unfollow: 'Takip Etme',
43-
refresh: 'yenile'
43+
refresh: 'yenile',
44+
share: 'paylas',
45+
Share: 'Paylas'
4446
},
4547

4648
topNavbar: {

0 commit comments

Comments
 (0)