Browser: Update UI with new components and elements (#5671)

This commit is contained in:
Rushan
2018-03-21 23:39:23 +05:30
committed by Harshavardhana
parent 384b4fdf28
commit 1459c4be1e
199 changed files with 10549 additions and 4702 deletions

View File

@@ -18,7 +18,7 @@ import * as actionsAlert from "./actions"
const initialState = {
show: false,
type: "danger"
type: "danger",
}
export default (state = initialState, action) => {
switch (action.type) {
@@ -27,7 +27,7 @@ export default (state = initialState, action) => {
show: true,
id: action.alert.id,
type: action.alert.type,
message: action.alert.message
message: action.alert.message,
}
case actionsAlert.CLEAR:
if (action.alert && action.alert.id != state.id) {