Fix typos in IDE props
This commit is contained in:
parent
c71c1f03c7
commit
2c198b5785
5 changed files with 12 additions and 7 deletions
|
@ -43,7 +43,7 @@ export default {
|
|||
'currentProjectId',
|
||||
'errorMessage',
|
||||
]),
|
||||
...mapGetters(['activeFile', 'hasChanges', 'someUncommitedChanges', 'isCommitModeActive']),
|
||||
...mapGetters(['activeFile', 'hasChanges', 'someUncommittedChanges', 'isCommitModeActive']),
|
||||
},
|
||||
mounted() {
|
||||
window.onbeforeunload = e => this.onBeforeUnload(e);
|
||||
|
@ -63,7 +63,7 @@ export default {
|
|||
onBeforeUnload(e = {}) {
|
||||
const returnValue = __('Are you sure you want to lose unsaved changes?');
|
||||
|
||||
if (!this.someUncommitedChanges) return undefined;
|
||||
if (!this.someUncommittedChanges) return undefined;
|
||||
|
||||
Object.assign(e, {
|
||||
returnValue,
|
||||
|
|
|
@ -25,11 +25,11 @@ export default {
|
|||
},
|
||||
computed: {
|
||||
...mapState(['loading', 'currentActivityView', 'changedFiles', 'stagedFiles', 'lastCommitMsg']),
|
||||
...mapGetters(['currentProject', 'someUncommitedChanges']),
|
||||
...mapGetters(['currentProject', 'someUncommittedChanges']),
|
||||
showSuccessMessage() {
|
||||
return (
|
||||
this.currentActivityView === activityBarViews.edit &&
|
||||
(this.lastCommitMsg && !this.someUncommitedChanges)
|
||||
(this.lastCommitMsg && !this.someUncommittedChanges)
|
||||
);
|
||||
},
|
||||
},
|
||||
|
|
|
@ -27,10 +27,10 @@ export default {
|
|||
'unusedSeal',
|
||||
]),
|
||||
...mapState('commit', ['commitMessage', 'submitCommitLoading']),
|
||||
...mapGetters(['lastOpenedFile', 'hasChanges', 'someUncommitedChanges', 'activeFile']),
|
||||
...mapGetters(['lastOpenedFile', 'hasChanges', 'someUncommittedChanges', 'activeFile']),
|
||||
...mapGetters('commit', ['discardDraftButtonDisabled']),
|
||||
showStageUnstageArea() {
|
||||
return !!(this.someUncommitedChanges || this.lastCommitMsg || !this.unusedSeal);
|
||||
return !!(this.someUncommittedChanges || this.lastCommitMsg || !this.unusedSeal);
|
||||
},
|
||||
activeFileKey() {
|
||||
return this.activeFile ? this.activeFile.key : null;
|
||||
|
|
|
@ -63,7 +63,7 @@ export const isEditModeActive = state => state.currentActivityView === activityB
|
|||
export const isCommitModeActive = state => state.currentActivityView === activityBarViews.commit;
|
||||
export const isReviewModeActive = state => state.currentActivityView === activityBarViews.review;
|
||||
|
||||
export const someUncommitedChanges = state =>
|
||||
export const someUncommittedChanges = state =>
|
||||
!!(state.changedFiles.length || state.stagedFiles.length);
|
||||
|
||||
export const getChangesInFolder = state => path => {
|
||||
|
|
5
changelogs/unreleased/gt-fix-ide-typos-in-props.yml
Normal file
5
changelogs/unreleased/gt-fix-ide-typos-in-props.yml
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
title: Fix IDE typos in props
|
||||
merge_request: 22685
|
||||
author: George Tsiolis
|
||||
type: other
|
Loading…
Reference in a new issue