IssueNotesRefactor: Fix consistent typo.

This commit is contained in:
Fatih Acet 2017-08-22 21:47:29 +03:00
parent 4e9f0a091b
commit 479670df94
4 changed files with 5 additions and 5 deletions

View File

@ -14,7 +14,7 @@ export const setNotesData = ({ commit }, data) => commit(types.SET_NOTES_DATA, d
export const setIssueData = ({ commit }, data) => commit(types.SET_ISSUE_DATA, data);
export const setUserData = ({ commit }, data) => commit(types.SET_USER_DATA, data);
export const setLastFetchedAt = ({ commit }, data) => commit(types.SET_LAST_FETCHED_AT, data);
export const setInitialNotes = ({ commit }, data) => commit(types.SET_INITAL_NOTES, data);
export const setInitialNotes = ({ commit }, data) => commit(types.SET_INITIAL_NOTES, data);
export const setTargetNoteHash = ({ commit }, data) => commit(types.SET_TARGET_NOTE_HASH, data);
export const toggleDiscussion = ({ commit }, data) => commit(types.TOGGLE_DISCUSSION, data);
@ -22,7 +22,7 @@ export const fetchNotes = ({ commit }, path) => service
.fetchNotes(path)
.then(res => res.json())
.then((res) => {
commit(types.SET_INITAL_NOTES, res);
commit(types.SET_INITIAL_NOTES, res);
});
export const deleteNote = ({ commit }, note) => service

View File

@ -5,7 +5,7 @@ export const REMOVE_PLACEHOLDER_NOTES = 'REMOVE_PLACEHOLDER_NOTES';
export const SET_NOTES_DATA = 'SET_NOTES_DATA';
export const SET_ISSUE_DATA = 'SET_ISSUE_DATA';
export const SET_USER_DATA = 'SET_USER_DATA';
export const SET_INITAL_NOTES = 'SET_INITIAL_NOTES';
export const SET_INITIAL_NOTES = 'SET_INITIAL_NOTES';
export const SET_LAST_FETCHED_AT = 'SET_LAST_FETCHED_AT';
export const SET_TARGET_NOTE_HASH = 'SET_TARGET_NOTE_HASH';
export const SHOW_PLACEHOLDER_NOTE = 'SHOW_PLACEHOLDER_NOTE';

View File

@ -69,7 +69,7 @@ export default {
[types.SET_USER_DATA](state, data) {
Object.assign(state, { userData: data });
},
[types.SET_INITAL_NOTES](state, notesData) {
[types.SET_INITIAL_NOTES](state, notesData) {
Object.assign(state, { notes: notesData });
},

View File

@ -39,7 +39,7 @@ describe('Actions Notes Store', () => {
describe('setInitialNotes', () => {
it('should set initial notes', (done) => {
testAction(actions.setInitialNotes, null, { notes: [] }, [
{ type: 'SET_INITAL_NOTES', payload: [individualNote] },
{ type: 'SET_INITIAL_NOTES', payload: [individualNote] },
], done);
});
});