diff options
| author | HJ <30-hj@users.noreply.git.pleroma.social> | 2019-04-30 06:05:52 +0000 |
|---|---|---|
| committer | HJ <30-hj@users.noreply.git.pleroma.social> | 2019-04-30 06:05:52 +0000 |
| commit | 0f7f685c5e720d870cc732f07f68fb6eac278a68 (patch) | |
| tree | fc095a3f597247bb5355b671328cfe7006079a4c /src/components/image_cropper/image_cropper.vue | |
| parent | d94fdd0617057f17a677e7e409f65021afc9d124 (diff) | |
| parent | 3665c86d709f3a04ae3471d09b84a69c8a8c9172 (diff) | |
Merge branch '437-user-profile-settings' into 'develop'
Transition to MastoAPI: user profile settings
Closes #437
See merge request pleroma/pleroma-fe!682
Diffstat (limited to 'src/components/image_cropper/image_cropper.vue')
| -rw-r--r-- | src/components/image_cropper/image_cropper.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/image_cropper/image_cropper.vue b/src/components/image_cropper/image_cropper.vue index 129e6f46..d2b86e9e 100644 --- a/src/components/image_cropper/image_cropper.vue +++ b/src/components/image_cropper/image_cropper.vue @@ -5,9 +5,9 @@ <img ref="img" :src="dataUrl" alt="" @load.stop="createCropper" /> </div> <div class="image-cropper-buttons-wrapper"> - <button class="btn" type="button" :disabled="submitting" @click="submit" v-text="saveText"></button> + <button class="btn" type="button" :disabled="submitting" @click="submit()" v-text="saveText"></button> <button class="btn" type="button" :disabled="submitting" @click="destroy" v-text="cancelText"></button> - <button class="btn" type="button" :disabled="submitting" @click="submitWithoutCropping" v-text="saveWithoutCroppingText"></button> + <button class="btn" type="button" :disabled="submitting" @click="submit(false)" v-text="saveWithoutCroppingText"></button> <i class="icon-spin4 animate-spin" v-if="submitting"></i> </div> <div class="alert error" v-if="submitError"> |
